Skip to content

Commit

Permalink
Fix using obsolete version of action (#180)
Browse files Browse the repository at this point in the history
* Fix using obsolete version of action

* Can't share paths
  • Loading branch information
andrewlock authored Sep 12, 2024
1 parent cbfcd1b commit bd108f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/BuildAndPack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
env:
GithubToken: ${{ secrets.GITHUB_TOKEN }}
NuGetToken: ${{ secrets.NUGET_TOKEN }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: artifacts
name: artifacts-linux
path: artifacts
windows-latest:
name: windows-latest
Expand All @@ -82,9 +82,9 @@ jobs:
env:
GithubToken: ${{ secrets.GITHUB_TOKEN }}
NuGetToken: ${{ secrets.NUGET_TOKEN }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: artifacts
name: artifacts-win
path: artifacts
macOS-latest:
name: macos-13 # latest is arm64, and it breaks a bunch of stuff
Expand All @@ -111,7 +111,7 @@ jobs:
env:
GithubToken: ${{ secrets.GITHUB_TOKEN }}
NuGetToken: ${{ secrets.NUGET_TOKEN }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: artifacts
name: artifacts-macos
path: artifacts

0 comments on commit bd108f1

Please sign in to comment.