Skip to content

Commit

Permalink
fixup docker tag cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall committed Dec 18, 2024
1 parent 765ae8b commit 2290032
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/delete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "BRANCH_NAME=${{ github.event.inputs.tag_pattern }}" >> $GITHUB_ENV
else
echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
BRANCH_NAME="${{ github.event.ref }}"
echo "BRANCH_NAME=${BRANCH_NAME#refs/heads/}" >> $GITHUB_ENV
fi
- name: Delete Docker Tags
Expand Down

0 comments on commit 2290032

Please sign in to comment.