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 2cea676 commit ae3bf5dCopy full SHA for ae3bf5d
.github/workflows/release-package.yml
@@ -5,7 +5,18 @@ on:
5
types: [created]
6
7
jobs:
8
- publish:
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: 20
15
+ - run: npm install
16
+ - run: npm run build
17
+
18
+ publish-gpr:
19
+ needs: build
20
runs-on: ubuntu-latest
21
permissions:
22
packages: write
@@ -16,10 +27,8 @@ jobs:
27
with:
28
node-version: 20
29
registry-url: https://npm.pkg.github.com/
- - run: npm install
- - run: npm run build
30
+ # - run: npm install
31
+ # - run: npm run build
32
- run: npm publish
33
env:
23
34
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
24
-
25
0 commit comments