.github/workflows/build-nightly.yml #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build nightly container image | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 2 * * *' # run at 2 AM UTC | ||
permissions: | ||
contents: read | ||
packages: write | ||
jobs: | ||
compute-suffix: | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'glitch-soc/mastodon' | ||
steps: | ||
- id: version_vars | ||
env: | ||
TZ: Etc/UTC | ||
run: | | ||
echo mastodon_version_prerelease=nightly.$(date +'%Y-%m-%d')>> $GITHUB_OUTPUT | ||
outputs: | ||
prerelease: ${{ steps.version_vars.outputs.mastodon_version_prerelease }} | ||
build-image: | ||
needs: compute-suffix | ||
uses: ./.github/workflows/build-container-image.yml | ||
Check failure on line 26 in .github/workflows/build-nightly.yml GitHub Actions / .github/workflows/build-nightly.ymlInvalid workflow file
|
||
with: | ||
file_to_build: Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
use_native_arm64_builder: false | ||
cache: false | ||
push_to_images: | | ||
ghcr.io/${{ github.repository_owner }}/mastodon | ||
version_prerelease: ${{ needs.compute-suffix.outputs.prerelease }} | ||
labels: | | ||
org.opencontainers.image.description=Nightly build image used for testing purposes | ||
flavor: | | ||
latest=true | ||
tags: | | ||
type=raw,value=edge | ||
type=raw,value=nightly | ||
type=schedule,pattern=${{ needs.compute-suffix.outputs.prerelease }} | ||
secrets: inherit | ||
build-image-streaming: | ||
needs: compute-suffix | ||
uses: ./.github/workflows/build-container-image.yml | ||
with: | ||
file_to_build: streaming/Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
use_native_arm64_builder: false | ||
cache: false | ||
push_to_images: | | ||
ghcr.io/${{ github.repository_owner }}/mastodon-streaming | ||
version_prerelease: ${{ needs.compute-suffix.outputs.prerelease }} | ||
labels: | | ||
org.opencontainers.image.description=Nightly build image used for testing purposes | ||
flavor: | | ||
latest=true | ||
tags: | | ||
type=raw,value=edge | ||
type=raw,value=nightly | ||
type=schedule,pattern=${{ needs.compute-suffix.outputs.prerelease }} | ||
secrets: inherit |