-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated actions/upload-artifact@v1/2/3 -> v4
- Loading branch information
1 parent
8753bf2
commit 423b915
Showing
5 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,13 +81,13 @@ jobs: | |
run: cmake --build build --config RelWithDebInfo -t rl.net | ||
|
||
- if: ${{ startsWith(matrix.config.os, 'windows') }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: build/binaries/*.dll | ||
|
||
- if: ${{ startsWith(matrix.config.os, 'windows') }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: symbols | ||
path: build/binaries/*.pdb | ||
|
@@ -99,13 +99,13 @@ jobs: | |
strip --strip-debug --strip-unneeded build/bindings/cs/rl.net.native/librlnetnative.so | ||
- if: ${{ startsWith(matrix.config.os, 'ubuntu') }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: build/bindings/cs/rl.net.native/librlnetnative.so | ||
|
||
- if: ${{ startsWith(matrix.config.os, 'ubuntu') }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: symbols | ||
path: symbols/librlnetnative.debug | ||
|
@@ -117,13 +117,13 @@ jobs: | |
strip -S build/bindings/cs/rl.net.native/librlnetnative.dylib | ||
- if: ${{ startsWith(matrix.config.os, 'macos') }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: build/bindings/cs/rl.net.native/librlnetnative.dylib | ||
|
||
- if: ${{ startsWith(matrix.config.os, 'macos') }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: symbols | ||
path: symbols/librlnetnative.dSYM | ||
|
@@ -150,7 +150,7 @@ jobs: | |
path: artifacts | ||
- uses: NuGet/[email protected] | ||
- run: nuget pack nuget/dotnet/rl.net.nuspec -Properties RL_NUGET_PACKAGE_VERSION=$RL_NUGET_VERSION -BasePath artifacts -OutputDirectory nuget_output | ||
- uses: actions/upload-artifact@v1 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: nuget_output/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters