Skip to content

Commit

Permalink
debug(ci-rs.yml): add * to path try to fix "not found" problem with u…
Browse files Browse the repository at this point in the history
…pload-artifact
  • Loading branch information
miniben-90 committed Aug 5, 2024
1 parent b6ba388 commit 9d8dbb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ jobs:
run: cargo build --release --target ${{ matrix.settings.target }}

# List contents of the target directory for debugging
- name: List target directory contents
run: ls -R ./target/${{ matrix.settings.target }}
# - name: List target directory contents
# run: ls -R ./target/${{ matrix.settings.target }}

# Upload artifact for the next steps (test and publish)
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build-rs-${{ matrix.settings.host }}-${{ matrix.settings.target }}
path: ./target/${{ matrix.settings.target }}
path: ./target/${{ matrix.settings.target }}/*
if-no-files-found: error

publish:
Expand Down

0 comments on commit 9d8dbb2

Please sign in to comment.