Skip to content

Commit

Permalink
Debug that find command.
Browse files Browse the repository at this point in the history
  • Loading branch information
trisyoungs committed May 30, 2024
1 parent 77c14ed commit 2c6a3e6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ runs:
echo "Release tag will be: ${{ env.gudPyVersion }}"
echo "Release name will be: ${{ env.gudPyVersion }}"
export GITHUB_TOKEN=${{ github.token }}
find ./packages -mindepth 2 -maxdepth 2 -type f -name "*.zip" -name "*.sif" -name "*.exe" -name "*.dmg"
FILES=( $(find ./packages -mindepth 2 -maxdepth 2 -type f -name "*.zip" -name "*.sif" -name "*.exe" -name "*.dmg") )
echo ${FILES[@]}
./update-release -r disorderedmaterials/gudpy -t ${{ env.gudPyVersion }} -e -n "${{ env.gudPyVersion }}" -f ReleaseNotes.md ${FILES[@]}
- name: Publish on GitHub (Continuous)
Expand Down

0 comments on commit 2c6a3e6

Please sign in to comment.