We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06be1f3 commit 4ecf8c1Copy full SHA for 4ecf8c1
.github/workflows/deploy-release.yml
@@ -68,15 +68,16 @@ jobs:
68
- name: Configure NPM
69
run: npm ci
70
71
- - name: Release to npm, s3, prod
72
- run: |
73
- ./deployment/release.sh ${{ steps.next-version.outputs.result }}
74
-
75
# We deploy to stage to send the updated release numbers. The code should not be any different
+ # than what was already in stage
76
- name: Release to stage
77
run: |
78
./deployment/deploy-qa.sh ${{ steps.next-version.outputs.result }}
79
+ - name: Release to npm, s3, prod
+ run: |
+ ./deployment/release.sh ${{ steps.next-version.outputs.result }}
80
+
81
- name: Create Github Release
82
uses: actions/github-script@v7
83
env:
0 commit comments