Skip to content

Commit

Permalink
Changed build process
Browse files Browse the repository at this point in the history
  • Loading branch information
ionarevamp committed Apr 6, 2024
1 parent 12ad3f0 commit ec7349c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ jobs:
use-cross: true
command: build
args: --release --target x86_64-unknown-linux-gnu
- name: Debug -- Show directory details
run: ls -R $PWD/target
- uses: actions/upload-artifact@v4
with:
# Name of the artifact to upload.
Expand All @@ -42,7 +40,7 @@ jobs:

# A file, directory or wildcard pattern that describes what to upload
# Required.
path: "$PWD/target/x86_64-unknown-linux-gnu/release/pokemon_structs"
path: 'target/x86_64-unknown-linux-gnu/release/pokemon_structs'

# The desired behavior if no files are found using the provided path.
# Available Options:
Expand Down Expand Up @@ -100,7 +98,7 @@ jobs:

# A file, directory or wildcard pattern that describes what to upload
# Required.
path: "$PWD/target/x86_64-unknown-linux-musl/release/pokemon_structs"
path: 'target/x86_64-unknown-linux-musl/release/pokemon_structs'

# The desired behavior if no files are found using the provided path.
# Available Options:
Expand Down

0 comments on commit ec7349c

Please sign in to comment.