Skip to content

Commit 8732983

Browse files
committed
chore: updated ci configuration to re-trigger merge from freb97/renovate/node-22.x-lockfile
1 parent 1014b42 commit 8732983

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,13 @@ jobs:
5353

5454
- name: Install
5555
run: |
56-
npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_PUBLISHING_KEY }}
5756
npm install
5857
npm run dev:prepare
5958
6059
- name: Release
61-
run: npm run release:ci
60+
run: |
61+
npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_PUBLISHING_KEY }}
62+
npm run release:ci
6263
6364
bump-version:
6465
name: 'Bump package version'
@@ -77,11 +78,16 @@ jobs:
7778
cache: 'npm'
7879

7980
- name: Install
80-
run: npm install
81+
run: |
82+
npm install
83+
npm run dev:prepare
8184
8285
- name: Bump version
8386
id: bump_version
8487
run: |
88+
git config user.name "github-actions[bot]"
89+
git config user.email "github-actions[bot]@users.noreply.github.com"
90+
8591
NEW_VERSION=$(npm version patch -m "chore: bumped package version to %s")
8692
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
8793
@@ -93,4 +99,9 @@ jobs:
9399
- name: Push changes
94100
run: |
95101
git commit --amend --no-edit
96-
git push origin HEAD:main --follow-tags
102+
git push origin main --tags
103+
104+
- name: Release new version
105+
run: |
106+
npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_PUBLISHING_KEY }}
107+
npm run release:ci

0 commit comments

Comments
 (0)