Skip to content

Commit 15ff5cf

Browse files
authored
fix(ci/cd): Add 'secrets: inherit' to showcase build jobs (#5217)
elsewhere the assets couldn't get resolved.
1 parent 93627e8 commit 15ff5cf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,48 +60,56 @@ jobs:
6060
build-showcase-stencil:
6161
uses: ./.github/workflows/01-build-showcases.yml
6262
needs: [build-packages]
63+
secrets: inherit
6364
with:
6465
showcase: stencil-showcase
6566

6667
build-showcase-angular:
6768
uses: ./.github/workflows/01-build-showcases.yml
6869
needs: [build-packages]
70+
secrets: inherit
6971
with:
7072
showcase: angular-showcase
7173

7274
build-showcase-angular-ssr:
7375
uses: ./.github/workflows/01-build-showcases.yml
7476
needs: [build-packages]
77+
secrets: inherit
7578
with:
7679
showcase: angular-ssr-showcase
7780

7881
build-showcase-react:
7982
uses: ./.github/workflows/01-build-showcases.yml
8083
needs: [build-packages]
84+
secrets: inherit
8185
with:
8286
showcase: react-showcase
8387

8488
build-showcase-next:
8589
uses: ./.github/workflows/01-build-showcases.yml
8690
needs: [build-packages]
91+
secrets: inherit
8792
with:
8893
showcase: next-showcase
8994

9095
build-showcase-vue:
9196
uses: ./.github/workflows/01-build-showcases.yml
9297
needs: [build-packages]
98+
secrets: inherit
9399
with:
94100
showcase: vue-showcase
95101

96102
build-showcase-nuxt:
97103
uses: ./.github/workflows/01-build-showcases.yml
98104
needs: [build-packages]
105+
secrets: inherit
99106
with:
100107
showcase: nuxt-showcase
101108

102109
build-showcase-patternhub:
103110
uses: ./.github/workflows/01-build-patternhub.yml
104111
needs: [build-packages, get-publish-version]
112+
secrets: inherit
105113
with:
106114
release: ${{ needs.get-publish-version.outputs.release }}
107115
preRelease: ${{ needs.get-publish-version.outputs.preRelease }}

0 commit comments

Comments
 (0)