We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae21891 commit 9684924Copy full SHA for 9684924
.github/workflows/publish.yml
@@ -2,10 +2,8 @@ name: Publish to JSR
2
3
on:
4
push:
5
- branches:
6
- - main
7
- paths:
8
- - "scenario-flow/**"
+ tags:
+ - "v*"
9
workflow_dispatch:
10
11
jobs:
@@ -16,14 +14,18 @@ jobs:
16
14
contents: read
17
15
id-token: write
18
+ strategy:
+ matrix:
19
+ deno-version: ["latest"]
20
+
21
steps:
22
- name: Checkout
23
uses: actions/checkout@v4
24
25
- name: Setup Deno
26
uses: denoland/setup-deno@v1
27
with:
- deno-version: v1.x
28
+ deno-version: ${{ matrix.deno-version }}
29
30
- name: Run tests
31
run: |
0 commit comments