We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6759b57 commit 39bfa6dCopy full SHA for 39bfa6d
.github/workflows/e2e-main.yaml
@@ -58,14 +58,17 @@ jobs:
58
path: podman-desktop-redhat-account-ext
59
60
- name: Setup default repository name
61
+ env:
62
+ EVENT: ${{ github.event_name }}
63
run: |
64
repository=podman-desktop-redhat-account-ext
- if [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then
65
+ echo EVENT: $EVENT
66
+ echo REPO: ${{ github.event.inputs.repositoryName }}
67
+ if [[ "$EVENT" == 'workflow_dispatch' ]]; then
68
repository=${{ github.event.inputs.repositoryName }}
69
fi
70
echo "REPOSITORY=$repository" >> $GITHUB_ENV
- echo REPO is: $repository
- ls
71
+ cat $GITHUB_ENV
72
73
# Checkout podman desktop
74
- uses: actions/checkout@v4
0 commit comments