Skip to content

Commit a7ca579

Browse files
Merge pull request #5 from acidicsoftware/trunk
Fix for buggy release script. Too many runs in one step. Learning :).
2 parents b861e00 + d34378b commit a7ca579

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ jobs:
3232
- name: Pack
3333
run: dotnet pack ./src/Quantify.Length/Quantify.Length.csproj --no-restore --configuration Release --no-build --output ./release/
3434

35+
- run: Push-Location ./release/
36+
3537
- name: Release
36-
run: Push-Location ./release/
3738
run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
38-
run: Pop-Location
39+
40+
- run: Pop-Location

0 commit comments

Comments
 (0)