Skip to content

Commit 9565355

Browse files
committed
temp: check npm version
1 parent 939aff9 commit 9565355

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
- sidv/fixRelease
78

89
concurrency: ${{ github.workflow }}-${{ github.ref }}
910

@@ -32,15 +33,17 @@ jobs:
3233
node-version-file: '.node-version'
3334

3435
- name: Install Packages
35-
run: pnpm install --frozen-lockfile
36-
37-
- name: Create Release Pull Request or Publish to npm
38-
id: changesets
39-
uses: changesets/action@06245a4e0a36c064a573d4150030f5ec548e4fcc # v1.4.10
40-
with:
41-
version: pnpm changeset:version
42-
publish: pnpm changeset:publish
43-
env:
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
46-
NPM_CONFIG_PROVENANCE: true
36+
run: |
37+
pnpm install --frozen-lockfile
38+
npm --version
39+
40+
# - name: Create Release Pull Request or Publish to npm
41+
# id: changesets
42+
# uses: changesets/action@06245a4e0a36c064a573d4150030f5ec548e4fcc # v1.4.10
43+
# with:
44+
# version: pnpm changeset:version
45+
# publish: pnpm changeset:publish
46+
# env:
47+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
49+
# NPM_CONFIG_PROVENANCE: true

0 commit comments

Comments
 (0)