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 bd8fcb5 commit 38ddd7bCopy full SHA for 38ddd7b
.github/workflows/nuget.yml
@@ -3,12 +3,17 @@ name: publish nuget
3
on:
4
push:
5
tags:
6
- - v*
+ - '*'
7
+
8
+env:
9
+ VERSION_STATIC: ${{ steps.tagName.outputs.tag }}
10
11
jobs:
12
publish:
13
name: publish-core
14
runs-on: ubuntu-latest
15
steps:
16
17
- uses: actions/checkout@v2
18
19
- name: Setup dotnet
@@ -23,7 +28,7 @@ jobs:
23
28
with:
24
29
# Filepath of the project to be packaged, relative to root of repository
25
30
PROJECT_FILE_PATH: src/OpenTask.Core/OpenTask.Core.csproj
26
- VERSION_STATIC: ${{ steps.get_version.outputs.VERSION }}
31
+ # VERSION_STATIC: ${{ steps.get_version.outputs.VERSION }}
27
32
33
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
34
0 commit comments