Skip to content

Commit d4ae762

Browse files
authored
chore(docs): fix workflow secrets (#1470)
1 parent 951090e commit d4ae762

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/on_doc_merge.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ jobs:
1717
uses: ./.github/workflows/reusable-publish-docs.yml
1818
with:
1919
version: main
20-
alias: stage
20+
alias: stage
21+
secrets:
22+
AWS_DOCS_ROLE_ARN: ${{ secrets.AWS_DOCS_ROLE_ARN }}
23+
AWS_DOCS_BUCKET: ${{ secrets.AWS_DOCS_BUCKET }}

.github/workflows/reusable-publish-docs.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ env:
77

88
on:
99
workflow_call:
10+
secrets:
11+
AWS_DOCS_ROLE_ARN:
12+
description: zomg
13+
required: false
14+
AWS_DOCS_BUCKET:
15+
description: zomg
16+
required: false
1017
inputs:
1118
version:
1219
description: "Version to build and publish docs (1.28.0, develop)"

0 commit comments

Comments
 (0)