2023-04-20 02:20:25 +09:00
|
|
|
name: Build nightly container image
|
|
|
|
on:
|
2023-04-20 04:46:31 +09:00
|
|
|
workflow_dispatch:
|
2023-04-20 02:20:25 +09:00
|
|
|
schedule:
|
|
|
|
- cron: '0 2 * * *' # run at 2 AM UTC
|
2023-07-18 20:36:12 +09:00
|
|
|
|
2023-04-20 02:20:25 +09:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
jobs:
|
2023-07-18 20:36:12 +09:00
|
|
|
compute-suffix:
|
2023-04-20 02:20:25 +09:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-18 14:15:32 +09:00
|
|
|
if: github.repository == 'TheEssem/mastodon'
|
2023-04-20 02:20:25 +09:00
|
|
|
steps:
|
2023-07-18 20:36:12 +09:00
|
|
|
- id: version_vars
|
2023-07-18 23:56:42 +09:00
|
|
|
env:
|
|
|
|
TZ: Etc/UTC
|
2023-05-04 20:45:39 +09:00
|
|
|
run: |
|
2023-08-26 01:26:44 +09:00
|
|
|
echo mastodon_version_prerelease=nightly.$(date +'%Y-%m-%d')>> $GITHUB_OUTPUT
|
2023-07-18 20:36:12 +09:00
|
|
|
outputs:
|
2023-08-26 01:26:44 +09:00
|
|
|
prerelease: ${{ steps.version_vars.outputs.mastodon_version_prerelease }}
|
2023-05-04 20:45:39 +09:00
|
|
|
|
2023-07-18 20:36:12 +09:00
|
|
|
build-image:
|
|
|
|
needs: compute-suffix
|
|
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
|
|
with:
|
2023-11-28 19:04:40 +09:00
|
|
|
file_to_build: Dockerfile
|
2023-07-18 20:36:12 +09:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-07-19 14:25:59 +09:00
|
|
|
use_native_arm64_builder: false
|
2023-09-15 06:11:36 +09:00
|
|
|
cache: false
|
2023-07-18 20:36:12 +09:00
|
|
|
push_to_images: |
|
2023-07-19 14:25:59 +09:00
|
|
|
ghcr.io/${{ github.repository_owner }}/mastodon
|
2023-08-26 01:26:44 +09:00
|
|
|
version_prerelease: ${{ needs.compute-suffix.outputs.prerelease }}
|
2023-07-18 20:36:12 +09:00
|
|
|
labels: |
|
|
|
|
org.opencontainers.image.description=Nightly build image used for testing purposes
|
|
|
|
flavor: |
|
2023-09-19 23:16:35 +09:00
|
|
|
latest=true
|
2023-07-18 20:36:12 +09:00
|
|
|
tags: |
|
|
|
|
type=raw,value=edge
|
|
|
|
type=raw,value=nightly
|
2023-08-26 01:26:44 +09:00
|
|
|
type=schedule,pattern=${{ needs.compute-suffix.outputs.prerelease }}
|
2023-07-18 20:36:12 +09:00
|
|
|
secrets: inherit
|
2023-11-28 19:04:40 +09:00
|
|
|
|
|
|
|
build-image-streaming:
|
|
|
|
needs: compute-suffix
|
|
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
|
|
with:
|
|
|
|
file_to_build: streaming/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-12-22 16:45:37 +09:00
|
|
|
use_native_arm64_builder: false
|
2023-11-28 19:04:40 +09:00
|
|
|
cache: false
|
|
|
|
push_to_images: |
|
2023-12-22 21:01:08 +09:00
|
|
|
ghcr.io/${{ github.repository_owner }}/mastodon-streaming
|
2023-11-28 19:04:40 +09:00
|
|
|
version_prerelease: ${{ needs.compute-suffix.outputs.prerelease }}
|
|
|
|
labels: |
|
|
|
|
org.opencontainers.image.description=Nightly build image used for testing purposes
|
|
|
|
flavor: |
|
2023-12-26 20:13:56 +09:00
|
|
|
latest=true
|
2023-11-28 19:04:40 +09:00
|
|
|
tags: |
|
|
|
|
type=raw,value=edge
|
|
|
|
type=raw,value=nightly
|
|
|
|
type=schedule,pattern=${{ needs.compute-suffix.outputs.prerelease }}
|
|
|
|
secrets: inherit
|