2021-07-29 04:25:25 +02:00
|
|
|
name: publish-release
|
2020-12-04 16:58:27 +01:00
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
jobs:
|
2021-07-29 04:25:25 +02:00
|
|
|
publish-release:
|
2022-12-10 22:29:07 +01:00
|
|
|
name: publish-release
|
2020-12-04 16:58:27 +01:00
|
|
|
runs-on: ubuntu-latest
|
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
|
|
|
|
- name: Get the release
|
|
|
|
run: echo RELEASE=${GITHUB_REF/refs\/tags\//} >> $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-12-23 15:59:22 +01:00
|
|
|
tags: |
|
|
|
|
${{ env.IMAGE_REPOSITORY }}:${{ env.RELEASE }}
|
|
|
|
${{ env.IMAGE_REPOSITORY }}:stable
|
|
|
|
${{ env.IMAGE_REPOSITORY }}:latest
|