Skip to content

Commit

Permalink
correct
Browse files Browse the repository at this point in the history
  • Loading branch information
labbott committed Jul 26, 2023
1 parent a66e604 commit 9ad8dfe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ jobs:
echo $VERSION
echo b
echo ${{ inputs.machine }}
for build in `ls ${{ steps.grab.outputs.download-path }}`; do
mv $build `basename $build .zip`-$VERSION.zip
OUT=${{ steps.grab.outputs.download-path }}
for build in `ls $OUT`; do
mv $OUT/$build $OUT/`basename $build .zip`-$VERSION.zip
done
ls ${{ steps.grab.outputs.download-path }}
#echo ${{ steps.grab.outputs.download-path }}
Expand Down

0 comments on commit 9ad8dfe

Please sign in to comment.