Skip to content

Commit

Permalink
Merge branch 'master' into frontend/v2-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianSW authored Dec 17, 2024
2 parents 7915f8e + 113b5a8 commit cc89588
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,29 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: cericmathey/hll_rcon_tool:latest,cericmathey/hll_rcon_tool:${{ github.ref_name }}
tags: |
cericmathey/hll_rcon_tool:${{ github.ref_name }}
${{ contains(github.ref_name, 'rc') && '' || 'cericmathey/hll_rcon_tool:latest' }}
- name: Build and push frontend
uses: docker/build-push-action@v5
with:
file: Dockerfile-frontend
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: cericmathey/hll_rcon_tool_frontend:latest,cericmathey/hll_rcon_tool_frontend:${{ github.ref_name }}
tags: |
cericmathey/hll_rcon_tool_frontend:${{ github.ref_name }}
${{ contains(github.ref_name, 'rc') && '' || 'cericmathey/hll_rcon_tool:latest' }}
- name: Update repo description
uses: peter-evans/dockerhub-description@v3
if: ${{ ! contains(github.ref_name, 'rc') }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: cericmathey/hll_rcon_tool
- name: Update repo description
uses: peter-evans/dockerhub-description@v3
if: ${{ ! contains(github.ref_name, 'rc') }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit cc89588

Please sign in to comment.