Skip to content

Commit

Permalink
issue #63: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin committed Feb 6, 2024
1 parent b7a8215 commit 68ff9f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:

- name: Delete the previous image (unmerged pull request)
if: github.event.pull_request.merged == false
run: python ${{ env.GITHUB_WORKSPACE }}/remove-previous-image/remove_previous_image.py
run: python $GITHUB_WORKSPACE/remove-previous-image/remove_previous_image.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REGISTRY: ${{ inputs.registry }}
Expand All @@ -128,7 +128,7 @@ jobs:

- name: Delete the previous image (merged pull request)
if: github.event.pull_request.merged == true
run: python ${{ env.GITHUB_WORKSPACE }}/remove-previous-image/remove_previous_image.py
run: python $GITHUB_WORKSPACE/remove-previous-image/remove_previous_image.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REGISTRY: ${{ inputs.registry }}
Expand Down

0 comments on commit 68ff9f3

Please sign in to comment.