Skip to content

Commit 030a413

Browse files
authored
Update main.yml
1 parent 2fbbd81 commit 030a413

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ jobs:
5353
- name: Pack NuGet Package
5454
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/release/')
5555
run: |
56-
dotnet pack --configuration Release --no-build --output ./artifacts /p:PackageVersion=${{ env.VERSION }}
56+
dotnet pack --configuration Release --no-build --output ./Artifacts /p:PackageVersion=${{ env.VERSION }}
5757
5858
- name: Push NuGet Package
5959
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/release/')
6060
run: |
61-
dotnet nuget push ./artifacts/Aria2.JsonRpcClient.${{ env.VERSION }}.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
61+
dotnet nuget push ./Artifacts/Aria2.JsonRpcClient.${{ env.VERSION }}.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
6262
6363
- name: Check if Release Exists
6464
if: github.ref == 'refs/heads/master'
@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/upload-release-asset@v1
8989
with:
9090
upload_url: ${{ steps.create_release.outputs.upload_url }}
91-
asset_path: ./artifacts/Aria2.JsonRpcClient.${{ env.VERSION }}.nupkg
91+
asset_path: ./Artifacts/Aria2.JsonRpcClient.${{ env.VERSION }}.nupkg
9292
asset_name: Aria2.JsonRpcClient.${{ env.VERSION }}.nupkg
9393
asset_content_type: application/zip
9494
env:
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/upload-release-asset@v1
100100
with:
101101
upload_url: ${{ steps.create_release.outputs.upload_url }}
102-
asset_path: ./artifacts/Aria2.JsonRpcClient.xml
102+
asset_path: ./Artifacts/Aria2.JsonRpcClient.xml
103103
asset_name: Aria2.JsonRpcClient.xml
104104
asset_content_type: application/xml
105105
env:

0 commit comments

Comments
 (0)