forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2599 from ClearlyClaire/glitch-soc/build-action
Add github action workflow for manual security builds
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
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 | ||
platforms: linux/amd64,linux/arm64 | ||
use_native_arm64_builder: true | ||
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=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 | ||
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=schedule,pattern=${{ needs.compute-suffix.outputs.prerelease }} | ||
secrets: inherit |