File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,13 @@ jobs:
1616 include :
1717 - platform : ubuntu-latest
1818 bin_path : target/release/RustyBear-Engine
19+ rename_cmd : mv target/release/RustyBear-Engine target/release/RustyBear-Engine-linux
1920 - platform : macos-latest
2021 bin_path : target/release/RustyBear-Engine
22+ rename_cmd : mv target/release/RustyBear-Engine target/release/RustyBear-Engine-macOS
2123 - platform : windows-latest
2224 bin_path : target/release/RustyBear-Engine.exe
25+ rename_cmd : mv target/release/RustyBear-Engine.exe target/release/RustyBear-Engine.exe
2326
2427 runs-on : ${{ matrix.platform }}
2528 steps :
3336 - name : Run tests
3437 run : cargo test --release --verbose
3538
39+ - name : Rename files
40+ run : ${{ matrix.rename_cmd }}
41+
3642 - name : Upload artifacts
3743 uses : actions/upload-artifact@v2
3844 with :
You can’t perform that action at this time.
0 commit comments