Skip to content

Commit

Permalink
Upgrade the rest of actions, use only GHCR
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeiP committed Apr 1, 2024
1 parent 33f80a7 commit 684a5f3
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/build-yhrek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,24 @@ jobs:
- uses: actions/checkout@v4 # Checking out the repo
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
name: Build and pus
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
Ardcoras/kululasku:yhrek
ghcr.io/Ardcoras/kululasku:yhrek
# platforms: linux/amd64,linux/arm64

0 comments on commit 684a5f3

Please sign in to comment.