mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-02 21:04:06 +03:00
33 lines
904 B
YAML
33 lines
904 B
YAML
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
name: build unfurl
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
build-version:
|
|
description: "Explicit Fluxer CalVer build version (YYYY.MDD.MICRO, UTC HHMMSS without leading zeroes) to use instead of automatic UTC clock allocation"
|
|
type: string
|
|
required: false
|
|
default: ""
|
|
workflow_call:
|
|
inputs:
|
|
build-version:
|
|
description: "Explicit Fluxer CalVer build version (YYYY.MDD.MICRO, UTC HHMMSS without leading zeroes) to use instead of automatic UTC clock allocation"
|
|
type: string
|
|
required: false
|
|
default: ""
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
image:
|
|
uses: ./.github/workflows/_build-image.yaml
|
|
with:
|
|
image: fluxer-unfurl
|
|
dockerfile: fluxer_unfurl/Dockerfile
|
|
build-version: ${{ inputs.build-version }}
|
|
secrets: inherit
|