Skip to content

Commit 39bfa6d

Browse files
authored
Update e2e-main.yaml
1 parent 6759b57 commit 39bfa6d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/e2e-main.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,17 @@ jobs:
5858
path: podman-desktop-redhat-account-ext
5959

6060
- name: Setup default repository name
61+
env:
62+
EVENT: ${{ github.event_name }}
6163
run: |
6264
repository=podman-desktop-redhat-account-ext
63-
if [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then
65+
echo EVENT: $EVENT
66+
echo REPO: ${{ github.event.inputs.repositoryName }}
67+
if [[ "$EVENT" == 'workflow_dispatch' ]]; then
6468
repository=${{ github.event.inputs.repositoryName }}
6569
fi
6670
echo "REPOSITORY=$repository" >> $GITHUB_ENV
67-
echo REPO is: $repository
68-
ls
71+
cat $GITHUB_ENV
6972
7073
# Checkout podman desktop
7174
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)