Skip to content

Commit c7c0ef5

Browse files
committed
Try to fix ci
1 parent b8ca431 commit c7c0ef5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

0 commit comments

Comments
 (0)