2023-07-18 13:36:12 +02:00
|
|
|
name: Build container release images
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-image:
|
|
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
|
|
with:
|
2023-11-28 11:04:40 +01:00
|
|
|
file_to_build: Dockerfile
|
2023-07-18 13:36:12 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
use_native_arm64_builder: true
|
|
|
|
push_to_images: |
|
|
|
|
tootsuite/mastodon
|
|
|
|
ghcr.io/mastodon/mastodon
|
2023-09-14 23:11:36 +02:00
|
|
|
# Do not use cache when building releases, so apt update is always ran and the release always contain the latest packages
|
|
|
|
cache: false
|
2023-08-31 14:59:50 +02:00
|
|
|
# Only tag with latest when ran against the latest stable branch
|
|
|
|
# This needs to be updated after each minor version release
|
2023-07-18 13:36:12 +02:00
|
|
|
flavor: |
|
2023-09-21 16:51:32 +02:00
|
|
|
latest=${{ startsWith(github.ref, 'refs/tags/v4.2.') }}
|
2023-07-18 13:36:12 +02:00
|
|
|
tags: |
|
|
|
|
type=pep440,pattern={{raw}}
|
|
|
|
type=pep440,pattern=v{{major}}.{{minor}}
|
|
|
|
secrets: inherit
|
2023-11-28 11:04:40 +01:00
|
|
|
|
|
|
|
build-image-streaming:
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v4.3.')
|
|
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
|
|
with:
|
|
|
|
file_to_build: streaming/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
use_native_arm64_builder: true
|
|
|
|
push_to_images: |
|
|
|
|
tootsuite/mastodon-streaming
|
|
|
|
ghcr.io/mastodon/mastodon-streaming
|
|
|
|
# Do not use cache when building releases, so apt update is always ran and the release always contain the latest packages
|
|
|
|
cache: false
|
|
|
|
# Only tag with latest when ran against the latest stable branch
|
|
|
|
# This needs to be updated after each minor version release
|
|
|
|
flavor: |
|
|
|
|
latest=${{ startsWith(github.ref, 'refs/tags/v4.3.') }}
|
|
|
|
tags: |
|
|
|
|
type=pep440,pattern={{raw}}
|
|
|
|
type=pep440,pattern=v{{major}}.{{minor}}
|
|
|
|
secrets: inherit
|