Skip to content

Commit ad26d57

Browse files
authored
Vb/vb/lbox publishing plt 1701 2 (#1890)
1 parent 9dec03f commit ad26d57

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/lbox-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: LBox Publish
22

33
on:
4-
workflow_dispatch:
4+
workflow_call:
55
inputs:
66
tag:
77
description: 'Release Tag'
88
required: true
9+
type: string
910

1011
concurrency:
1112
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/publish.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,18 @@ permissions:
2323
id-token: write
2424

2525
jobs:
26+
build-lbox:
27+
permissions:
28+
actions: read
29+
contents: write
30+
id-token: write # Needed to access the workflow's OIDC identity.
31+
packages: write
32+
uses: ./.github/workflows/lbox-publish.yml
33+
with:
34+
tag: ${{ inputs.tag }}
35+
secrets: inherit
2636
build:
37+
needs: ['build-lbox']
2738
runs-on: ubuntu-latest
2839
outputs:
2940
hashes: ${{ steps.hash.outputs.hashes }}

0 commit comments

Comments
 (0)