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 bb0caa6 commit 251841dCopy full SHA for 251841d
.github/workflows/gateway-release-pr.yml
@@ -70,6 +70,11 @@ jobs:
70
TYPE_ARG: ${{ fromJSON('{"patch":"patch", "minor":"minor", "major":"major"}')[github.event.inputs.type] }}
71
BETA_ARG: ${{ github.event.inputs.beta == 'true' && '--preRelease=beta' || '' }}
72
run: npm run release -- $TYPE_ARG --ci --verbose --no-git.push --no-git.commit --no-git.tag --no-github --no-npm --no-git.requireCleanWorkingDir $BETA_ARG
73
+ - name: Stage package.json changes
74
+ working-directory: services/gateway
75
+ run: |
76
+ # Stage the updated package.json and CHANGELOG.md
77
+ git add package.json CHANGELOG.md
78
- name: Update version.ts file
79
working-directory: services/gateway
80
run: |
0 commit comments