Skip to content

Commit

Permalink
.github/workflows/package.yml: fix ls command for finding the package…
Browse files Browse the repository at this point in the history
… files.
  • Loading branch information
pnx committed May 4, 2023
1 parent 8cab0cb commit 54ca24b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id: package
run: |
./build.sh ${{matrix.build-opts}}
FILE=$(ls build/eosio-*.deb | head -1)
FILE=$(ls build/*.deb | head -1)
echo "filename=$FILE" >> "$GITHUB_OUTPUT"
echo "name=$(basename $FILE)" >> "$GITHUB_OUTPUT"
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
id: package
run: |
./build.sh ${{matrix.build-opts}}
FILE=$(ls build/eosio-*.rpm | head -1)
FILE=$(ls build/*.rpm | head -1)
echo "filename=$FILE" >> "$GITHUB_OUTPUT"
echo "name=$(basename $FILE)" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 54ca24b

Please sign in to comment.