Simplify docker CI workflow

This commit is contained in:
Max Stanley 2023-12-09 12:27:47 +00:00
parent 7f117db876
commit c0c3e14016

View file

@ -13,18 +13,11 @@ jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# https://docs.docker.com/build/ci/github-actions/multi-platform/
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3 - uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3 - uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5 - uses: docker/metadata-action@v5
if: github.ref_type == 'tag'
id: meta id: meta
with: with:
images: ghcr.io/${{ github.repository }} images: ghcr.io/${{ github.repository }}
@ -39,18 +32,18 @@ jobs:
type=semver,pattern={{major}} type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{version}} type=semver,pattern={{version}}
- uses: docker/build-push-action@v5 - name: Login to GitHub Container Registry
if: github.ref_type == 'tag' if: github.ref_type == 'tag'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v5
with: with:
context: . context: .
push: true push: ${{ github.ref_type == 'tag' }}
pull: true pull: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
- uses: docker/build-push-action@v5
if: github.ref_type == 'branch'
with:
context: .
push: false
pull: true