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 e1eeec2 commit 9dd2f9bCopy full SHA for 9dd2f9b
.github/workflows/deno.yml renamed to .github/workflows/ci.yml
@@ -1,7 +1,7 @@
1
# This workflow will install Deno then run `deno lint` and `deno test`.
2
# For more information see: https://github.com/denoland/setup-deno
3
4
-name: Deno
+name: Lint and test
5
6
on:
7
push:
.github/workflows/publish.yml
@@ -0,0 +1,29 @@
+# Publish new versions, but run the step only if 'deno.json' changed.
+
+name: Publish
+on:
+ push:
+ branches:
8
+ - main
9
+ paths:
10
+ - deno.json
11
12
+jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
16
+ permissions:
17
+ contents: read
18
+ id-token: write
19
20
+ steps:
21
+ - uses: actions/checkout@v4
22
23
+ - name: Setup Deno
24
+ uses: denoland/setup-deno@v2
25
+ with:
26
+ deno-version: v2.x
27
28
+ - name: Publish package
29
+ run: deno publish
0 commit comments