Skip to content

Commit

Permalink
fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthysell committed Sep 11, 2024
1 parent 97a57f9 commit 6185086
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: dotnet test ${{ env.SrcDir }}

- name: Upload Build Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.Product }}.${{ matrix.target }}
path: ${{ env.BuildDir }}/${{ env.Product }}.${{ matrix.target }}.zip
Expand All @@ -65,7 +65,7 @@ jobs:
run: dotnet test ${{ env.SrcDir }}

- name: Upload Build Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.Product }}.${{ matrix.target }}
path: ${{ env.BuildDir }}/${{ env.Product }}.${{ matrix.target }}.tar.gz
Expand All @@ -92,7 +92,7 @@ jobs:
run: dotnet test ${{ env.SrcDir }}

- name: Upload Build Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.Product }}.${{ matrix.target }}
path: ${{ env.BuildDir }}/${{ env.Product }}.${{ matrix.target }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: dotnet test --configuration ${{ matrix.configuration }} --no-build ${{ env.SolutionFile }}

- name: Upload Build Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.configuration }}Binaries
path: ${{ env.BinDir }}/${{ matrix.configuration }}/net5.0

0 comments on commit 6185086

Please sign in to comment.