Skip to content

Commit

Permalink
fix target path location in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jshbrntt committed Sep 27, 2024
1 parent 0316b25 commit e82db4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
- name: Find artifacts
run: |
echo "archive_asset_path=$(find target/release -name *.zip -o -name *.tar.gz)" >> "$GITHUB_ENV"
echo "sha256_asset_path=$(find target/release -name *.sha256)" >> "$GITHUB_ENV"
echo "archive_asset_path=$(find target -name *.zip -o -name *.tar.gz)" >> "$GITHUB_ENV"
echo "sha256_asset_path=$(find target -name *.sha256)" >> "$GITHUB_ENV"
- name: Get artifact basenames and content types
run: |
Expand Down

0 comments on commit e82db4f

Please sign in to comment.