Skip to content

Commit b69c38a

Browse files
committed
fix release 3
1 parent fd3f7d7 commit b69c38a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Restore dependencies
4949
run: dotnet restore
5050
- name: Build
51-
run: dotnet build /p:Version=${{ steps.version_step.outputs.fullSemVer }} --no-restore -c Debug -v n
51+
run: dotnet build -p:Version=${{ steps.version_step.outputs.fullSemVer }} --no-restore -c Debug -v n
5252
- name: Unit Tests
5353
run: dotnet test -c Debug --no-build -v n --filter-trait Category=Unit
5454
- name: Integration Tests

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ jobs:
122122
dotnet-version: 10.0.x
123123
- name: Build
124124
run: dotnet build ./src/HydraScript/HydraScript.csproj -c Release -v n `
125-
/p:Version=${{ needs.publish-release.outputs.publish_version }} `
126-
/p:PublishAot=false /p:PublishSingleFile=false
125+
-p:Version=${{ needs.publish-release.outputs.publish_version }} `
126+
-p:PublishAot=false -p:PublishSingleFile=false
127127
- name: Publish
128128
run: dotnet nuget push ./src/HydraScript/bin/Release/*.nupkg `
129129
--api-key ${{ secrets.NUGET_API_KEY }} `
130-
--source https://api.nuget.org/v3/index.json
130+
--source "https://api.nuget.org/v3/index.json"

0 commit comments

Comments
 (0)