2022-11-23 03:08:40 +01:00
|
|
|
name: publish-latest-to-ghcr
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: [test]
|
|
|
|
branches: [master]
|
|
|
|
types: [completed]
|
|
|
|
concurrency:
|
2023-09-23 21:14:40 +02:00
|
|
|
group: ${{ github.event.workflow_run.head_repository.full_name }}::${{ github.event.workflow_run.head_branch }}::${{ github.workflow }}
|
2022-11-23 03:08:40 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
publish-latest-to-ghcr:
|
|
|
|
runs-on: ubuntu-latest
|
2023-09-23 21:36:19 +02:00
|
|
|
if: ${{ (github.event.workflow_run.conclusion == 'success') && (github.event.workflow_run.head_repository.full_name == github.repository) }}
|
2022-11-23 03:08:40 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
2023-09-30 14:06:35 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-23 03:08:40 +01:00
|
|
|
- name: Set up QEMU
|
2023-09-23 23:46:23 +02:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2022-11-23 03:08:40 +01:00
|
|
|
- name: Set up Docker Buildx
|
2023-09-30 14:14:39 +02:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-11-23 03:08:40 +01:00
|
|
|
- name: Get image repository
|
|
|
|
run: echo IMAGE_REPOSITORY=$(echo ghcr.io/${{ github.actor }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
|
|
|
|
- name: Login to Registry
|
2023-09-23 23:38:54 +02:00
|
|
|
uses: docker/login-action@v3
|
2022-11-23 03:08:40 +01:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push Docker image
|
2024-06-23 04:39:52 +02:00
|
|
|
uses: docker/build-push-action@v6
|
2022-11-23 03:08:40 +01:00
|
|
|
with:
|
2024-05-22 04:43:59 +02:00
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
2022-11-23 03:08:40 +01:00
|
|
|
pull: true
|
|
|
|
push: true
|
|
|
|
tags: ${{ env.IMAGE_REPOSITORY }}:latest
|