2021-11-12 04:18:29 +00:00
|
|
|
name: Build container image
|
|
|
|
on:
|
2021-11-16 20:42:14 +00:00
|
|
|
workflow_dispatch:
|
2021-11-12 04:18:29 +00:00
|
|
|
push:
|
|
|
|
branches:
|
2022-03-21 03:46:11 +00:00
|
|
|
- 'main'
|
2022-02-14 15:08:02 +00:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- .github/workflows/build-image.yml
|
|
|
|
- Dockerfile
|
2022-09-08 07:44:24 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-11-12 10:51:16 +00:00
|
|
|
packages: write
|
2022-09-08 07:44:24 +00:00
|
|
|
|
2021-11-12 04:18:29 +00:00
|
|
|
jobs:
|
|
|
|
build-image:
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-30 02:07:19 +00:00
|
|
|
|
|
|
|
concurrency:
|
2023-02-18 05:56:16 +00:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2023-01-30 02:07:19 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-11-12 04:18:29 +00:00
|
|
|
steps:
|
2022-06-19 05:38:07 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-01-24 08:48:05 +00:00
|
|
|
- uses: hadolint/hadolint-action@v3.1.0
|
2022-06-20 09:52:12 +00:00
|
|
|
- uses: docker/setup-qemu-action@v2
|
2022-06-22 02:35:39 +00:00
|
|
|
- uses: docker/setup-buildx-action@v2
|
2023-03-14 19:27:43 +00:00
|
|
|
|
|
|
|
- name: Log in to the Github Container registry
|
|
|
|
uses: docker/login-action@v2
|
2021-11-12 04:18:29 +00:00
|
|
|
with:
|
2022-06-28 09:11:18 +00:00
|
|
|
registry: ghcr.io
|
2023-03-14 19:27:43 +00:00
|
|
|
username: ${{ github.actor }}
|
2022-06-28 09:11:18 +00:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-23 15:44:16 +00:00
|
|
|
if: github.event_name != 'pull_request'
|
2023-03-14 19:27:43 +00:00
|
|
|
|
2022-06-19 05:39:21 +00:00
|
|
|
- uses: docker/metadata-action@v4
|
2021-11-12 04:18:29 +00:00
|
|
|
id: meta
|
|
|
|
with:
|
2022-06-28 09:11:18 +00:00
|
|
|
images: ghcr.io/${{ github.repository_owner }}/mastodon
|
2021-11-12 04:18:29 +00:00
|
|
|
tags: |
|
2022-11-16 08:27:34 +00:00
|
|
|
type=raw,value=latest,enable={{is_default_branch}}
|
2021-11-12 04:18:29 +00:00
|
|
|
type=edge,branch=main
|
2022-11-16 08:27:34 +00:00
|
|
|
type=sha,prefix=,format=long
|
2023-03-14 19:27:43 +00:00
|
|
|
|
2023-05-04 11:45:39 +00: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 16:58:35 +00:00
|
|
|
echo mastodon_version_suffix=+edge-$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT
|
2023-05-04 11:45:39 +00:00
|
|
|
|
2023-02-01 11:09:43 +00:00
|
|
|
- uses: docker/build-push-action@v4
|
2021-11-12 04:18:29 +00:00
|
|
|
with:
|
|
|
|
context: .
|
2023-05-04 11:45:39 +00:00
|
|
|
build-args: MASTODON_VERSION_SUFFIX=${{ steps.version_vars.outputs.mastodon_version_suffix }}
|
2022-03-30 12:34:53 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-02-01 12:15:42 +00:00
|
|
|
provenance: false
|
2022-11-17 10:01:16 +00:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2023-03-23 09:15:41 +00:00
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
2021-11-12 04:18:29 +00:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2023-03-14 19:27:43 +00:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-11-17 10:01:16 +00:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|