We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30eb2ef commit 1b89241Copy full SHA for 1b89241
1 file changed
.github/workflows/release.yaml
@@ -4,7 +4,7 @@ on:
4
types: [published]
5
6
jobs:
7
- build:
+ publish:
8
runs-on: ubuntu-latest
9
steps:
10
- name: Git checkout
@@ -17,8 +17,8 @@ jobs:
17
18
- name: .NET build
19
run: |
20
- echo "Version is ${VERSION:1}"
21
- dotnet msbuild -t:restore,build,pack -p:Configuration=Release -p:Version="${VERSION:1}" FINT.Model.Resource.sln
+ echo Version is ${VERSION:1}
+ dotnet msbuild -t:restore,build,pack -p:Configuration=Release -p:Version=${VERSION:1} FINT.Model.Resource.sln
22
env:
23
VERSION: ${{github.event.release.tag_name}}
24
0 commit comments