We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dec03f commit 3fd7aaaCopy full SHA for 3fd7aaa
.github/workflows/lbox-publish.yml
@@ -1,11 +1,12 @@
1
name: LBox Publish
2
3
on:
4
- workflow_dispatch:
+ workflow_call:
5
inputs:
6
tag:
7
description: 'Release Tag'
8
required: true
9
+ type: string
10
11
concurrency:
12
group: ${{ github.workflow }}-${{ github.ref }}
.github/workflows/publish.yml
@@ -23,6 +23,10 @@ permissions:
23
id-token: write
24
25
jobs:
26
+ build-lbox:
27
+ uses: ./.github/workflows/lbox-publish.yml
28
+ with:
29
+ tag: ${{ inputs.tag }}
30
build:
31
runs-on: ubuntu-latest
32
outputs:
0 commit comments