2021-11-12 05:18:29 +01:00
|
|
|
name: Build container image
|
|
|
|
on:
|
2021-11-16 21:42:14 +01:00
|
|
|
workflow_dispatch:
|
2021-11-12 05:18:29 +01:00
|
|
|
push:
|
|
|
|
branches:
|
2022-03-21 04:46:11 +01:00
|
|
|
- 'main'
|
2021-11-12 05:18:29 +01:00
|
|
|
tags:
|
2022-03-21 04:46:11 +01:00
|
|
|
- '*'
|
2022-02-14 16:08:02 +01:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- .github/workflows/build-image.yml
|
|
|
|
- Dockerfile
|
2022-09-08 09:44:24 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2023-03-14 20:27:43 +01:00
|
|
|
packages: write
|
2022-09-08 09:44:24 +02:00
|
|
|
|
2021-11-12 05:18:29 +01:00
|
|
|
jobs:
|
|
|
|
build-image:
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-30 03:07:19 +01:00
|
|
|
|
|
|
|
concurrency:
|
2023-02-18 06:56:16 +01:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2023-01-30 03:07:19 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-11-12 05:18:29 +01:00
|
|
|
steps:
|
2022-06-19 07:38:07 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-01-24 09:48:05 +01:00
|
|
|
- uses: hadolint/hadolint-action@v3.1.0
|
2022-06-20 11:52:12 +02:00
|
|
|
- uses: docker/setup-qemu-action@v2
|
2022-06-22 04:35:39 +02:00
|
|
|
- uses: docker/setup-buildx-action@v2
|
2023-03-14 20:27:43 +01:00
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
2021-11-12 05:18:29 +01:00
|
|
|
with:
|
2021-11-14 06:11:05 +01:00
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2023-03-15 03:43:49 +01:00
|
|
|
if: github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request'
|
2023-03-14 20:27:43 +01:00
|
|
|
|
|
|
|
- name: Log in to the Github Container registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2023-03-15 03:43:49 +01:00
|
|
|
if: github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request'
|
2023-03-14 20:27:43 +01:00
|
|
|
|
2022-06-19 07:39:21 +02:00
|
|
|
- uses: docker/metadata-action@v4
|
2021-11-12 05:18:29 +01:00
|
|
|
id: meta
|
|
|
|
with:
|
2023-03-14 20:27:43 +01:00
|
|
|
images: |
|
|
|
|
tootsuite/mastodon
|
|
|
|
ghcr.io/mastodon/mastodon
|
2021-11-12 05:18:29 +01:00
|
|
|
flavor: |
|
2021-11-14 06:11:05 +01:00
|
|
|
latest=auto
|
2021-11-12 05:18:29 +01:00
|
|
|
tags: |
|
|
|
|
type=edge,branch=main
|
2022-10-10 00:32:40 +02:00
|
|
|
type=pep440,pattern={{raw}}
|
|
|
|
type=pep440,pattern=v{{major}}.{{minor}}
|
2022-02-23 16:44:16 +01:00
|
|
|
type=ref,event=pr
|
2023-03-14 20:27:43 +01:00
|
|
|
|
2023-05-04 13:45:39 +02:00
|
|
|
- name: Generate version suffix
|
|
|
|
id: version_vars
|
|
|
|
if: github.repository == 'mastodon/mastodon' && github.event_name == 'push' && github.ref_name == 'main'
|
|
|
|
run: |
|
2023-05-05 18:58:35 +02:00
|
|
|
echo mastodon_version_suffix=+edge-$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT
|
2023-05-04 13:45:39 +02:00
|
|
|
|
2023-02-01 12:09:43 +01:00
|
|
|
- uses: docker/build-push-action@v4
|
2021-11-12 05:18:29 +01:00
|
|
|
with:
|
|
|
|
context: .
|
2023-05-04 13:45:39 +02:00
|
|
|
build-args: MASTODON_VERSION_SUFFIX=${{ steps.version_vars.outputs.mastodon_version_suffix }}
|
2022-03-30 14:34:53 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-02-01 13:15:42 +01:00
|
|
|
provenance: false
|
2022-11-17 11:01:16 +01:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2023-03-15 16:43:44 +01:00
|
|
|
push: ${{ github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request' }}
|
2021-11-12 05:18:29 +01:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2023-03-14 20:27:43 +01:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-11-17 11:01:16 +01:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|