mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-22 10:33:48 -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.
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
name: Build security nightly container image
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
compute-suffix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: version_vars
|
|
env:
|
|
TZ: Etc/UTC
|
|
run: |
|
|
echo mastodon_version_prerelease=nightly.$(date --date='next day' +'%Y-%m-%d')-security>> $GITHUB_OUTPUT
|
|
outputs:
|
|
prerelease: ${{ steps.version_vars.outputs.mastodon_version_prerelease }}
|
|
|
|
build-image:
|
|
needs: compute-suffix
|
|
uses: ./.github/workflows/build-container-image.yml
|
|
with:
|
|
file_to_build: Dockerfile
|
|
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=auto
|
|
tags: |
|
|
type=raw,value=edge
|
|
type=raw,value=nightly
|
|
type=raw,value=${{ 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
|
|
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=auto
|
|
tags: |
|
|
type=raw,value=edge
|
|
type=raw,value=nightly
|
|
type=raw,value=${{ needs.compute-suffix.outputs.prerelease }}
|
|
secrets: inherit
|