Skip to content

Commit

Permalink
fix inheritance of event.name (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixZdi authored Apr 11, 2024
1 parent a8e5905 commit 40396d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
VERSION=noop
if [ "${{ github.event_name }}" = "schedule" ]; then
VERSION=edge
elif [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
elif [[ "${{ github.event.workflow }}" = ".github/workflows/app_release.yml" ]]; then
VERSION=${{ inputs.tag }}
elif [[ $GITHUB_REF == refs/heads/* ]]; then
VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')
Expand Down

0 comments on commit 40396d9

Please sign in to comment.