Skip to content

Commit

Permalink
Fixed docker release action
Browse files Browse the repository at this point in the history
  • Loading branch information
louisa-uno committed Aug 6, 2023
1 parent e88aefa commit 915d0a9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,19 @@ jobs:
username: ${{ secrets.GIT_USERNAME }}
password: ${{ secrets.GIT_TOKEN }}

- name: Extract Version Tag
id: extract_tag
run: echo "VERSION_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
luois45/skinbaronbot_v2:${{ github.ref }}
luois45/skinbaronbot_v2:${{ env.VERSION_TAG }}
luois45/skinbaronbot_v2:latest
ghcr.io/luois45/skinbaronbot_v2:${{ github.ref }}
ghcr.io/luois45/skinbaronbot_v2:${{ env.VERSION_TAG }}
ghcr.io/luois45/skinbaronbot_v2:latest
- name: Update Hub Description
Expand Down

0 comments on commit 915d0a9

Please sign in to comment.