Skip to content

Commit fed7a95

Browse files
committed
Fix CI
Signed-off-by: Victor Chang <[email protected]>
1 parent 221717f commit fed7a95

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -391,13 +391,11 @@ jobs:
391391
retention-days: 7
392392

393393
- name: Package API
394-
env:
395-
PACKAGEDIR: '${{ github.workspace }}/nupkg/'
396394
if: ${{ (matrix.os == 'ubuntu-latest') }}
397395
run: |
398-
mkdir $PACKAGEDIR
399-
dotnet pack --no-build -c ${{ env.BUILD_CONFIG }} -o $PACKAGEDIR -p:PackageVersion=${{ env.NUGETVER }}
400-
ls -lR $PACKAGEDIR
396+
mkdir ~/nupkg
397+
dotnet pack --no-build -c ${{ env.BUILD_CONFIG }} -o ~/nupkg -p:PackageVersion=${{ env.NUGETVER }}
398+
ls -lR ~/nupkg
401399
working-directory: ./src/Api
402400

403401
- name: Upload Nuget

0 commit comments

Comments
 (0)