2023-09-18 05:52:26 +00:00
|
|
|
name: Release Docker Image
|
2023-09-17 06:38:04 +00:00
|
|
|
|
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
|
|
|
on:
|
2023-09-17 06:58:38 +00:00
|
|
|
push:
|
|
|
|
branches: ["main"]
|
2023-09-17 07:20:57 +00:00
|
|
|
# Publish semver tags as releases.
|
|
|
|
tags: ["v*.*.*"]
|
2023-09-17 06:38:04 +00:00
|
|
|
|
|
|
|
env:
|
2023-09-19 06:06:00 +00:00
|
|
|
# Use the free Github repository
|
2023-09-17 06:58:38 +00:00
|
|
|
REGISTRY: ghcr.io
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2023-09-17 06:38:04 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-09-17 06:58:38 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2023-09-19 06:07:34 +00:00
|
|
|
id-token: write
|
2023-09-17 06:58:38 +00:00
|
|
|
|
2023-09-18 05:52:26 +00:00
|
|
|
# Only one release at a time and cancel prior releases
|
|
|
|
concurrency:
|
|
|
|
group: release
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-09-17 06:58:38 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-09-19 06:06:00 +00:00
|
|
|
# I'm paying for Depot for faster ARM builds.
|
|
|
|
- uses: depot/setup-action@v1
|
2023-09-17 06:58:38 +00:00
|
|
|
|
2023-09-18 05:29:32 +00:00
|
|
|
# Login against a Docker registry
|
2023-09-17 06:58:38 +00:00
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
|
|
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
|
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-09-17 07:20:57 +00:00
|
|
|
# Extract metadata (tags, labels) for Docker
|
|
|
|
- name: Extract Docker metadata
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
|
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
|
2023-09-19 06:06:00 +00:00
|
|
|
# Build and push Docker image with Depot
|
2023-09-17 06:58:38 +00:00
|
|
|
- name: Build and push Docker image
|
|
|
|
id: build-and-push
|
2023-09-19 06:06:00 +00:00
|
|
|
uses: depot/build-push-action@v1
|
2023-09-17 06:58:38 +00:00
|
|
|
with:
|
2023-09-19 06:06:00 +00:00
|
|
|
project: r257ctfqm6
|
2023-09-17 06:58:38 +00:00
|
|
|
context: .
|
2023-09-18 07:19:40 +00:00
|
|
|
push: true
|
2023-09-17 07:20:57 +00:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-09-17 20:09:38 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|