Skip to content

Commit

Permalink
fix pre_release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram van Dartel committed Apr 4, 2024
1 parent da4ccb3 commit d65193f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
## GENERAL
################################################
- name: "πŸš€ GitHub - Checkout repository"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "πŸš€ GitHub - Get Branch / Tag Name"
id: get_branch
Expand All @@ -63,7 +63,7 @@ jobs:
## QEMU
################################################
- name: "βš™οΈ QEMU - Set up QEMU"
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

################################################
## DSMR
Expand All @@ -84,24 +84,24 @@ jobs:
## Docker
################################################
- name: "βš™οΈ Docker - Set up Docker Buildx"
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: "πŸ”“ Docker - Login"
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: "πŸ”“ Docker - Login to GHCR"
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: "βš™οΈ Docker - Set up metadata"
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
tags: |
type=raw,value=${{ steps.dsmr_version.outputs.version }}-${{ env.DOCKER_TARGET_RELEASE }},enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
Expand All @@ -112,7 +112,7 @@ jobs:
ghcr.io/${{ env.DOCKER_TARGET_REPO }}
- name: "πŸš€ Docker - Build"
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
Expand Down

0 comments on commit d65193f

Please sign in to comment.