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 104ca13 commit 754ae1cCopy full SHA for 754ae1c
.github/workflows/release.yml
@@ -10,7 +10,7 @@ permissions:
10
contents: write
11
actions: read
12
13
-name: Upload Release Asset
+name: Release
14
15
jobs:
16
build:
@@ -48,5 +48,21 @@ jobs:
48
asset_content_type: application/zip
49
50
deploy:
51
- uses: ./.github/workflows/deploy-to-npm.yml
52
- needs: upload
+ name: Publish Package to npmjs
+ runs-on: windows-latest
53
+ needs: upload
54
+ steps:
55
+ - uses: actions/checkout@v3
56
+ - uses: actions/setup-node@v3
57
+ with:
58
+ node-version: 18
59
+ registry-url: https://registry.npmjs.org/
60
+ - run: |
61
+ dir
62
+ npm ci
63
+ npm run build
64
+ npm whoami
65
+ npm publish
66
+ env:
67
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
68
+ working-directory: ${{ github.workspace }}/src/shell/js/composeui-node-launcher/
0 commit comments