2021-07-29 04:25:25 +02:00
|
|
|
name: publish-latest
|
2020-12-04 16:58:27 +01:00
|
|
|
on:
|
2021-07-29 04:25:25 +02:00
|
|
|
workflow_run:
|
2022-11-23 02:56:49 +01:00
|
|
|
workflows: [test]
|
2021-07-30 01:14:48 +02:00
|
|
|
branches: [master]
|
2021-07-29 04:25:25 +02:00
|
|
|
types: [completed]
|
2022-10-10 05:02:05 +02:00
|
|
|
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-10-10 05:02:05 +02:00
|
|
|
cancel-in-progress: true
|
2020-12-04 16:58:27 +01:00
|
|
|
jobs:
|
2021-07-29 04:25:25 +02:00
|
|
|
publish-latest:
|
2020-12-04 16:58:27 +01:00
|
|
|
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-07-19 02:45:42 +02:00
|
|
|
timeout-minutes: 60
|
2020-12-04 16:58:27 +01:00
|
|
|
steps:
|
2023-09-30 14:06:35 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-12-04 16:58:27 +01:00
|
|
|
- name: Set up QEMU
|
2023-09-23 23:46:23 +02:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2020-12-04 16:58:27 +01:00
|
|
|
- name: Set up Docker Buildx
|
2023-09-30 14:14:39 +02:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-11-24 00:12:55 +01:00
|
|
|
- name: Get image repository
|
|
|
|
run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
|
2020-12-04 16:58:27 +01:00
|
|
|
- name: Login to Docker Registry
|
2023-09-23 23:38:54 +02:00
|
|
|
uses: docker/login-action@v3
|
2020-12-04 16:58:27 +01:00
|
|
|
with:
|
2020-12-04 17:15:52 +01:00
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
2020-12-04 16:58:27 +01:00
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2022-11-24 00:12:55 +01:00
|
|
|
- name: Build and push Docker image
|
2024-06-23 04:39:52 +02:00
|
|
|
uses: docker/build-push-action@v6
|
2020-12-04 16:58:27 +01:00
|
|
|
with:
|
2024-05-22 04:43:59 +02:00
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
2020-12-04 16:58:27 +01:00
|
|
|
pull: true
|
|
|
|
push: true
|
2022-10-11 04:11:19 +02:00
|
|
|
tags: ${{ env.IMAGE_REPOSITORY }}:latest
|