We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 060af42 commit 29d3071Copy full SHA for 29d3071
1 file changed
.github/workflows/cli-release-prod.yml
@@ -29,14 +29,13 @@ jobs:
29
- uses: actions/checkout@v4
30
with:
31
token: ${{ secrets.GITHUB_TOKEN }}
32
- ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
33
34
- uses: ./.github/actions/setup-project
35
36
- name: Calculate and update production version
37
id: bump_version
38
run: |
39
- cd cli/release
+ cd npm-app/release
40
41
# Get current version and bump it
42
CURRENT_VERSION=$(bun -e "console.log(require('./package.json').version)")
@@ -59,7 +58,7 @@ jobs:
59
58
git stash
60
git pull --rebase origin main
61
git stash pop
62
- git add cli/release/package.json
+ git add npm-app/release/package.json
63
git commit -m "Bump version to ${{ steps.bump_version.outputs.new_version }}"
64
git push
65
0 commit comments