Skip to content

Commit

Permalink
fix: added cjs to included files
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Jan 6, 2025
1 parent e97f622 commit 3a9b61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,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 "*.cjs" -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 3a9b61a

Please sign in to comment.