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 87f88cf commit 1f4f94cCopy full SHA for 1f4f94c
.github/workflows/release.yml
@@ -11,8 +11,12 @@ jobs:
11
run:
12
shell: pwsh
13
steps:
14
+ - name: Extract version from tag (dev)
15
+ if: github.event_name == 'workflow_dispatch'
16
+ run: echo "VERSION=0.0.0" >> $env:GITHUB_ENV
17
+
18
- name: Extract version from tag
- id: vars
19
+ if: github.ref_type == 'tag'
20
run: echo "VERSION=$($env:GITHUB_REF -replace 'refs/tags/v','')" >> $env:GITHUB_ENV
21
22
- uses: actions/checkout@v3
0 commit comments