mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-23 11:03:50 -05:00
Conflicts: - `.github/workflows/build-nightly.yml`: We had modified the file to disable the custom ARM64 builder. Upstream has removed it, using github's runners. Took upstream's changes. - `.github/workflows/build-push-pr.yml`: We had modified the file to disable the custom ARM64 builder. Upstream has removed it, using github's runners. Took upstream's changes. - `.github/workflows/build-releases.yml`: We had modified the file to disable the custom ARM64 builder. Upstream has removed it, using github's runners. Took upstream's changes. - `.github/workflows/build-security.yml`: We had modified the file to disable the custom ARM64 builder. Upstream has removed it, using github's runners. Took upstream's changes.
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
name: Build container release images
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
build-image:
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
with:
|
|
file_to_build: Dockerfile
|
|
push_to_images: |
|
|
ghcr.io/${{ github.repository_owner }}/mastodon
|
|
# 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
|
|
|
|
build-image-streaming:
|
|
if: startsWith(github.ref, 'refs/tags/v4.3.')
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
with:
|
|
file_to_build: streaming/Dockerfile
|
|
push_to_images: |
|
|
ghcr.io/${{ github.repository_owner }}/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
|