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 b51d9fb commit d3ad442Copy full SHA for d3ad442
.github/workflows/npm-publish.yml
@@ -14,13 +14,17 @@ jobs:
14
id: get_tag_version
15
run: echo ::set-output name=TAG_VERSION::${GITHUB_REF/refs\/tags\//}
16
17
+ - uses: denoland/setup-deno@v1
18
+ with:
19
+ deno-version: v1.x
20
+
21
- uses: actions/setup-node@v2
22
with:
23
node-version: "18.x"
24
registry-url: "https://registry.npmjs.org"
25
26
- name: npm build
- run: deno run -A ./scripts/build.ts ${{steps.get_tag_version.outputs.TAG_VERSION}}
27
+ run: deno run -A scripts/build.ts ${{steps.get_tag_version.outputs.TAG_VERSION}}
28
29
- name: npm publish
30
if: startsWith(github.ref, 'refs/tags/')
0 commit comments