Skip to content

Commit

Permalink
[BUILD] - Workflow (#1294)
Browse files Browse the repository at this point in the history
Used the wrong environment variable in the workflow
  • Loading branch information
gambol99 authored Mar 6, 2024
1 parent a1ce72d commit 3384caf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
id: get_image_tag
run: |
if [[ "${GITHUB_REF##*/}" == "master" ]]; then
echo "image_tag=latest" >> $GITHUB_STATE
echo "image_tag=latest" >> $GITHUB_OUTPUT
else
echo "image_tag=${GITHUB_REF##*/}" >> $GITHUB_STATE
echo "image_tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
fi
- name: Docker Metadata
id: docker_meta
Expand Down

0 comments on commit 3384caf

Please sign in to comment.