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 53b4071 commit 34395eaCopy full SHA for 34395ea
.github/workflows/release.yml
@@ -16,9 +16,13 @@ jobs:
16
- name: Build and publish to folder
17
shell: pwsh
18
run: ./publish.ps1
19
+
20
+ - name: Get the version
21
+ id: version
22
+ run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
23
24
- name: Create release
25
uses: ncipollo/release-action@v1
26
with:
- name: Release ${{ github.ref }}
- artifacts: "release/*"
27
+ name: Release ${{ steps.version.outputs.VERSION }}
28
+ artifacts: "release/*"`
0 commit comments