Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitiwat-owen committed Nov 9, 2023
1 parent bd668f3 commit 9edbab5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
- name: Set environment
id: env
run: |
echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" >> $GITHUB_ENV
echo "GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV
echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" >> $GITHUB_OUTPUT
echo "IMAGE_TAG=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT
echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" >> "$GITHUB_ENV"
echo "GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" >> "$GITHUB_OUTPUT"
echo "IMAGE_TAG=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_OUTPUT"
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
Expand Down

0 comments on commit 9edbab5

Please sign in to comment.