Q2TG/.github/workflows/main.yml

49 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2022-03-02 10:36:30 +00:00
name: Build and publish docker container
on:
2023-01-19 08:02:12 +00:00
workflow_dispatch:
2022-03-02 10:36:30 +00:00
jobs:
publish:
name: Publish container image
2023-04-03 09:51:30 +00:00
runs-on: ubuntu-latest
2022-03-02 10:36:30 +00:00
steps:
- name: Checkout
uses: actions/checkout@v4
2022-03-02 10:36:30 +00:00
- name: OCI meta
id: meta
uses: docker/metadata-action@v5
2022-03-02 10:36:30 +00:00
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.PACKAGES_TOKEN }}
2022-03-02 10:36:30 +00:00
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.actor != 'dependabot[bot]' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2023-11-06 10:48:28 +00:00
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max