Skip to content

Commit 6caf837

Browse files
committed
add pre-production env
1 parent 0dabbdd commit 6caf837

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/release_promotion.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,13 @@ jobs:
4646

4747
approve_release:
4848
name: Approve Release
49-
environment: production
49+
environment: pre-production
5050
runs-on: ubuntu-latest
5151
steps:
52+
- name: Check out repository
53+
uses: actions/checkout@v4
54+
with:
55+
fetch-depth: '0'
5256
- name: Create git tag
5357
run: |
5458
git tag -a $VERSION -m "Release of MCK $VERSION"
@@ -62,6 +66,10 @@ jobs:
6266
environment: production
6367
runs-on: ubuntu-latest
6468
steps:
69+
- name: Check out repository
70+
uses: actions/checkout@v4
71+
with:
72+
fetch-depth: '0'
6573
- name: Publish Release Notes
6674
run: |
6775
gh release edit $VERSION --draft=false --verify-tag

0 commit comments

Comments
 (0)