Skip to content

Commit

Permalink
Merge pull request #2559 from drwetter/test_ghcr3.0
Browse files Browse the repository at this point in the history
Partyly rollback changes in GHCR YML build file
  • Loading branch information
drwetter authored Sep 5, 2024
2 parents 112dfd3 + 349e328 commit e3a9681
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/docker-3.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:

steps:
- name: Source checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Setup QEMU
id: qemu
uses: docker/setup-qemu-action@v3.2.0
uses: docker/setup-qemu-action@v2.1.0

- name: Setup Buildx
id: buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v2

- name: Set Docker metadata
id: docker_meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v4
with:
images: ${{ github.repository }}
labels: |
Expand All @@ -41,14 +41,14 @@ jobs:
- name: GitHub login
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3.3.0
uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v3.2.0
with:
push: ${{ github.event_name != 'pull_request' }}
context: .
Expand All @@ -60,4 +60,3 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
tags: |
ghcr.io/${{ github.repository }}:${{ env.BUILD_VERSION }}
ghcr.io/${{ github.repository }}:latest

0 comments on commit e3a9681

Please sign in to comment.