From ec7349ca109b2e7c08336f575f6dfde90c97e234 Mon Sep 17 00:00:00 2001 From: ionarevamp Date: Fri, 5 Apr 2024 19:03:10 -0600 Subject: [PATCH] Changed build process --- .github/workflows/rust.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6e2b943..6f2d33b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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. @@ -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: @@ -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: