Skip to content

Commit 70c90a2

Browse files
committed
fix version number publishing
1 parent ba1eb75 commit 70c90a2

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/build.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,11 @@ jobs:
4040
- name: Test
4141
run: dotnet test src/Stowage.sln -c release --filter Category!=Integration --no-restore --verbosity normal /p:Version=${{ env.v }} /p:FileVersion=${{ env.v }} /p:AssemblyVersion=${{ env.av }}
4242

43-
- name: Upload a Build Artifact
44-
uses: actions/[email protected]
45-
with:
46-
name: packages
47-
path: src/**/*.nupkg
48-
4943
- name: collect artifacts
5044
run: |
5145
mkdir artifacts
5246
cp src/Stowage/bin/Release/*.nupkg artifacts/
53-
echo "${{ env.VERSION }}" >> artifacts/version.txt
47+
echo "${{ env.v }}" >> artifacts/version.txt
5448
cp docs/release-history.md artifacts/
5549
5650
- uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)