Skip to content

Commit

Permalink
chore: properly take all files
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Nov 7, 2024
1 parent b9fa926 commit c516c9a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,7 @@ runs:
GITHUB_TOKEN: ${{ steps.get_installation_token.outputs.token || github.token }}
run: |
git add "${{ inputs.manifestPath }}"
find ${{ github.workspace }}/dist \( -name "*.js" -o -name "*.map" -o -name "*.json" \) -print0 | xargs -0 git
add -f
find ${{ github.workspace }}/dist \( -name "*.js" -o -name "*.map" -o -name "*.json" \) -print0 | xargs -0 git add -f
echo "Changed files:"
echo "$(git diff-index --cached --name-only HEAD)"
if [ -n "$(git diff-index --cached --name-only HEAD)" ]; then
Expand Down

0 comments on commit c516c9a

Please sign in to comment.