Skip to content

Commit

Permalink
patched workflow config with latest builder and fixed ubuntu version …
Browse files Browse the repository at this point in the history
…for compatibility freeze
  • Loading branch information
Kai Lehmann committed Jan 27, 2023
1 parent 1abc632 commit c141cec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

name: Build Image

runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:

Expand All @@ -24,25 +24,25 @@ jobs:
# - run: echo ::set-env name=IMAGE_TAG::${GITHUB_REF:10}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build
if: github.event_name != 'release'
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3

- name: Release
if: github.event_name == 'release'
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: true
tags: |
Expand Down

0 comments on commit c141cec

Please sign in to comment.