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 0a6e572 commit d01c111Copy full SHA for d01c111
.github/workflows/release.yml
@@ -13,8 +13,6 @@ jobs:
13
steps:
14
- name: checkout
15
uses: actions/checkout@v4
16
- - name: setup deno
17
- uses: denoland/setup-deno@v2
18
- name: get version
19
id: vars
20
run: echo ::set-output name=version::$(echo ${{github.ref_name}} | sed 's/^v//')
@@ -24,11 +22,9 @@ jobs:
24
22
node-version: 18.x
25
23
registry-url: https://registry.npmjs.com
26
- name: build
27
- run: deno task npm $NPM_VERSION
28
- env:
29
- NPM_VERSION: ${{steps.vars.outputs.version}}
+ run: npm run build
30
- name: publish
31
run: npm publish --access=public
32
- working-directory: ./npm
+ working-directory: .
33
env:
34
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
0 commit comments