Skip to content

Commit fe8022c

Browse files
authored
CI fix for .NET SDK 7.0.200 (graphql-dotnet#3554)
1 parent 2301628 commit fe8022c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-artifacts-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: dotnet build --no-restore -c Release -p:VersionSuffix=$GITHUB_RUN_NUMBER
5555
- name: Pack solution [Release]
5656
working-directory: src
57-
run: dotnet pack --no-restore --no-build -c Release -p:VersionSuffix=$GITHUB_RUN_NUMBER -p:PackageOutputPath=out
57+
run: dotnet pack --no-restore --no-build -c Release -p:VersionSuffix=$GITHUB_RUN_NUMBER -p:PackageOutputPath=../out
5858
# See: https://github.com/dotnet/sdk/issues/30624#issuecomment-1432118204
5959
- name: Upload artifacts
6060
uses: actions/upload-artifact@v3

.github/workflows/publish-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: dotnet build --no-restore -c Release -p:Version=$version
6262
- name: Pack solution [Release]
6363
working-directory: src
64-
run: dotnet pack --no-restore --no-build -c Release -p:Version=$version -p:PackageOutputPath=out
64+
run: dotnet pack --no-restore --no-build -c Release -p:Version=$version -p:PackageOutputPath=../out
6565
# See: https://github.com/dotnet/sdk/issues/30624#issuecomment-1432118204
6666
- name: Upload Nuget packages as workflow artifacts
6767
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)