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 1506614 commit ace4abdCopy full SHA for ace4abd
.github/workflows/release.yaml
@@ -6,8 +6,20 @@ on:
6
pull_request:
7
8
jobs:
9
+ manifest:
10
+ runs-on: ubuntu-latest
11
+ outputs:
12
+ version: ${{ steps.extract.outputs.version }}
13
+
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - id: extract
17
+ working-directory: ./workspace/extension/static
18
+ run: echo version=v$(jq -r '.version' manifest.json) >> $GITHUB_OUTPUT
19
20
bundle:
21
runs-on: ubuntu-latest
22
+ needs: manifest
23
24
steps:
25
- uses: actions/checkout@v4
@@ -26,6 +38,9 @@ jobs:
26
38
name: extension-${{ github.sha }}
27
39
path: workspace/extension/build/svelte-devtools.zip
28
40
41
+ - run: echo ${{ needs.manifest.outputs.version }}
42
+ # - run: gh release create --draft
43
29
44
# publish:
30
45
# runs-on: ubuntu-latest
31
46
# needs: bundle
0 commit comments