File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -58,13 +58,17 @@ jobs:
5858 id-token : write
5959
6060 steps :
61+ - name : Create artifacts directory
62+ run : mkdir -p artifacts
63+
6164 - name : Download artifacts
6265 uses : actions/download-artifact@v5
66+ id : download
6367 with :
6468 path : artifacts
6569
6670 - name : Rename nupkg
67- run : mv artifacts /nupkg/ValvePak.*.nupkg artifacts/ValvePak.nupkg
71+ run : mv ${{ steps.download.outputs.download-path }} /nupkg/ValvePak.*.nupkg artifacts/ValvePak.nupkg
6872
6973 - name : Display artifacts folder structure
7074 run : ls -Rl
Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
3- <ProjectBaseVersion >3.0.0 </ProjectBaseVersion >
3+ <ProjectBaseVersion >3.0.1 </ProjectBaseVersion >
44 <ProjectVersion Condition =" '$(GITHUB_RUN_NUMBER)' != ''" >$(ProjectBaseVersion).$(GITHUB_RUN_NUMBER)</ProjectVersion >
55 <ProjectVersion Condition =" '$(GITHUB_RUN_NUMBER)' == ''" >$(ProjectBaseVersion).0</ProjectVersion >
66
You can’t perform that action at this time.
0 commit comments