Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybart1337 committed Jan 19, 2024
1 parent b1622b5 commit bcdf00d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Write Tag to ENV variable
run: echo "BRANCH_NAME=${github.event.release.tag_name}" >> $GITHUB_ENV
run: echo "BRANCH_NAME=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
swap-storage: true
- name: Checkout
uses: actions/checkout@v2
- name: Echo ${github.event.release.tag_name}
run: echo ${github.event.release.tag_name}
- name: Echo ${{ github.event.release.tag_name }}
run: echo ${{ github.event.release.tag_name }}
- name: Write Tag to ENV variable
run: echo "LABEL_VERSION=${github.event.release.tag_name}" >> $GITHUB_ENV
run: echo "LABEL_VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v1
with:
Expand Down

0 comments on commit bcdf00d

Please sign in to comment.