Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
horacehoff authored Apr 16, 2024
1 parent 14fd9cb commit d5dc0db
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cd target & cd release & dir
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: WINDOWS
# A file, directory or wildcard pattern that describes what to upload
path: target/release/veber.exe

build_macos:
runs-on: macos-latest
Expand All @@ -27,6 +34,13 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cd target && cd release && ls
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: MacOS
# A file, directory or wildcard pattern that describes what to upload
path: target/release/veber
build_linux:
runs-on: ubuntu-latest
steps:
Expand All @@ -35,3 +49,10 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cd target && cd release && ls
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: Ubuntu
# A file, directory or wildcard pattern that describes what to upload
path: target/release/veber

0 comments on commit d5dc0db

Please sign in to comment.