1
0
puyopuyotetr.is/.github/workflows/build-releases.yml

28 lines
734 B
YAML
Raw Normal View History

name: Build container release images
2023-07-24 14:15:03 +09:00
on: push
permissions:
contents: read
packages: write
jobs:
2023-07-24 16:25:28 +09:00
get-current-date:
name: Get Current Date
2023-07-24 14:15:03 +09:00
runs-on: ubuntu-latest
steps:
2023-07-24 16:25:28 +09:00
- name: Get Current Date
2023-07-24 14:15:03 +09:00
id: time
2023-07-24 16:25:28 +09:00
run: echo "DATE=$(date +%Y%m%d%H%M)" >> $GITHUB_OUTPUT
build-image:
uses: ./.github/workflows/build-container-image.yml
with:
platforms: linux/amd64,linux/arm64
use_native_arm64_builder: false
push_to_images: |
ghcr.io/${{ github.repository_owner }}/mastodon
# Only tag with latest when ran against the latest stable branch
# This needs to be updated after each minor version release
flavor: |
2023-07-24 14:15:03 +09:00
latest = true
secrets: inherit