We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c939853 commit 406a2a5Copy full SHA for 406a2a5
.github/workflows/build-nuget.yml
@@ -80,12 +80,12 @@ jobs:
80
81
- name: Package NuGet
82
run: |
83
- nuget pack OpenRA-OpenAL-CS.nuspec -OutputDirectory ./nuget -version ${{ github.event.inputs.nugetPackageVersion }}
+ nuget pack OpenRA-OpenAL-CS.nuspec -OutputDirectory ./nuget -version ${{ env.PACKAGE_VERSION }}
84
85
- name: Upload NuGet package to Artifacts
86
uses: actions/upload-artifact@v3
87
with:
88
- name: NuGet Package ${{ github.event.inputs.nugetPackageVersion }}
+ name: NuGet Package ${{ env.PACKAGE_VERSION }}
89
path: ./nuget
90
91
- name: Tag a release
0 commit comments