Skip to content

Commit

Permalink
actions: update release jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Feb 1, 2024
1 parent a346e3e commit cfbc9a3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,15 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build/Push to Docker Hub
- name: Push to Docker Hub
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile.${{ matrix.target }}
tags: consol/${{ matrix.target }}:${{ env.BRANCH_NAME }}, consol/${{ matrix.target }}:latest
build-args: OMD_VERSION=${{ env.BRANCH_NAME }}
tags: |
consol/${{ matrix.target }}:${{ env.BRANCH_NAME }}
consol/${{ matrix.target }}:latest
platforms: linux/amd64,linux/arm64
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3
Expand All @@ -68,5 +71,7 @@ jobs:
with:
push: true
file: Dockerfile.${{ matrix.target }}
tags: ghcr.io/consol/docker-headless-vnc-container/${{ matrix.target }}:${{ env.BRANCH_NAME }}, docker.pkg.github.com/consol/docker-headless-vnc-container/${{ matrix.target }}:latest
tags: |
ghcr.io/consol/docker-headless-vnc-container/${{ matrix.target }}:${{ env.BRANCH_NAME }}
ghcr.io/consol/docker-headless-vnc-container/${{ matrix.target }}:latest
platforms: linux/amd64,linux/arm64

0 comments on commit cfbc9a3

Please sign in to comment.