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 acc3c2f commit fc3a0beCopy full SHA for fc3a0be
.github/workflows/jsr.yml
@@ -0,0 +1,27 @@
1
+name: jsr
2
+
3
+env:
4
+ DENO_VERSION: 1.x
5
6
+on:
7
+ push:
8
+ tags:
9
+ - "v*"
10
11
+permissions:
12
+ contents: read
13
+ id-token: write
14
15
+jobs:
16
+ publish:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+ - uses: denoland/setup-deno@v1
23
24
+ deno-version: ${{ env.DENO_VERSION }}
25
+ - name: Publish
26
+ run: |
27
+ deno run -A jsr:@david/[email protected]
deno.jsonc
@@ -1,4 +1,7 @@
{
+ "name": "@core/unknownutil",
+ "version": "0.0.0",
+ "exports": "./mod.ts",
"lock": false,
"imports": {
"https://deno.land/x/unknownutil@$MODULE_VERSION/": "./"
0 commit comments