Skip to content

Commit 3ea0aa5

Browse files
committed
chore: add staging deploy steps in release-pipeline workflow
1 parent b9e7809 commit 3ea0aa5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release-pipeline.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ on:
77
workflow_dispatch:
88

99
jobs:
10+
deploy-staging:
11+
uses: ./.github/workflows/deploy-staging-environment.yml
12+
secrets: inherit
13+
permissions:
14+
contents: read
15+
id-token: write
16+
17+
production-hold:
18+
needs: deploy-staging
19+
runs-on: ubuntu-latest
20+
permissions:
21+
contents: read
22+
id-token: write
23+
environment: prod
24+
steps:
25+
- run: echo "Awaiting approval for production release."
26+
1027
prepare-release:
1128
needs: production-hold
1229
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)