Rename and Move Linux Binary after Compilation
Some checks failed
Run Tests on Code / run-tests (push) Successful in 14s
Build and Release Binary File / run-tests (push) Successful in 9s
Build and Release Binary File / build (push) Successful in 1m2s
Build and Release Binary File / upload-release (push) Failing after 10s

This commit is contained in:
Neshura 2023-11-17 10:19:46 +00:00
parent 2a24ac1ec1
commit 02c1ba7b83

View file

@ -28,13 +28,15 @@ jobs:
uses: https://code.forgejo.org/actions/checkout@v3
-
name: Compiling To Linux Target
run: cargo build -r
run: |
cargo build -r
mv ./target/release/ascendance-of-a-bookworm-bot ./bookworm-bot-linux-amd64
-
name: Uploading Build Artifact
uses: actions/upload-artifact@v3
with:
name: bookworm-bot-linux-amd64
path: ./target/release/ascendance-of-a-bookworm-bot
path: ./bookworm-bot-linux-amd64
if-no-files-found: error
upload-release: