forked from jzaki/zaki-bazaar
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 1.09 KB
/
Copy pathrelease-forum-sample-app.yml
File metadata and controls
35 lines (31 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Release forum-sample-app
# Manually-triggered release for a single submodule. Delegates the
# build / verify / sign / publish pipeline to the local
# _release-module.yml reusable workflow so signing config lives in
# exactly one place.
#
# Source of truth for module name + version is
# submodules/forum-sample-app/metadata.json — read by the upstream
# logos-modules-release-action.
#
# This file is generated by scripts/add-module.sh from
# release-module.yml.template. Don't hand-edit the boilerplate; if you
# need to change the pipeline, edit _release-module.yml (shared) or the
# template (affects future modules).
on:
workflow_dispatch:
inputs:
force_build:
description: "Force build — replace the current published release if it has the same version."
type: boolean
default: false
# Forked repos default to a read-only GITHUB_TOKEN.
permissions:
contents: write
jobs:
release:
uses: ./.github/workflows/_release-module.yml
with:
module_path: submodules/forum-sample-app
force_build: ${{ inputs.force_build }}
secrets: inherit