Skip to content

Commit

Permalink
Use find.
Browse files Browse the repository at this point in the history
  • Loading branch information
trisyoungs committed May 29, 2024
1 parent c1738df commit aad5fcb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ runs:
echo "Release tag will be: ${{ env.gudPyVersion }}"
echo "Release name will be: ${{ env.gudPyVersion }}"
export GITHUB_TOKEN=${{ github.token }}
./update-release -r disorderedmaterials/gudpy -t ${{ env.gudPyVersion }} -e -n "${{ env.gudPyVersion }}" -f ReleaseNotes.md packages/*zip packages/*sif packages/*exe packages/*dmg
FILES=( $(find ./packages -type f -name *.zip -name *.sif -name *.exe -name *.dmg) )
./update-release -r disorderedmaterials/gudpy -t ${{ env.gudPyVersion }} -e -n "${{ env.gudPyVersion }}" -f ReleaseNotes.md ${FILES[@]}
- name: Publish on GitHub (Continuous)
if: ${{ inputs.publish == 'true' && inputs.isRelease == 'false' }}
Expand Down

0 comments on commit aad5fcb

Please sign in to comment.