Skip to content

Commit

Permalink
fix: Removed typos from workflow. (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniotarricone authored May 29, 2024
1 parent b18956c commit 93487d5
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,6 @@ jobs:
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
docker push -a ghcr.io/${{ github.repository }}
#
# RELEASE CANDICATE - Get sha256 of Docker image.
#
- name: RELEASE CANDIDATE - Get sha256 of Docker image
if: steps.semantic.outputs.new_release_published == 'true'
run: echo "image_sha256=$(docker image inspect -f '{{ .Id }}' ghcr.io/${{ github.repository }}:${{ github.sha }}-RC | sha256sum | cut -d' ' -f1)" >> "$GITHUB_ENV"

#
# Login to Azure.
#
Expand Down Expand Up @@ -283,13 +276,6 @@ jobs:
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
docker push -a ghcr.io/${{ github.repository }}
#
# STABLE - Get sha256 of Docker image.
#
- name: STABLE - Get sha256 of Docker image
if: steps.semantic.outputs.new_release_published == 'true'
run: echo "image_sha256=$(docker image inspect -f '{{ .Id }}' ghcr.io/${{ github.repository }}:${{ github.sha }} | sha256sum | cut -d' ' -f1)" >> "$GITHUB_ENV"

#
# STABLE - Update Container App.
#
Expand Down

0 comments on commit 93487d5

Please sign in to comment.