Skip to content

Commit

Permalink
build(NODE-6598): fix node signing action for all node team packages (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson authored Dec 9, 2024
1 parent 3bc2b4c commit 9f6497b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions node/sign_node_package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,8 @@ runs:
if: ${{ inputs.sign_native == 'true' }}
shell: bash
run: |
FILENAMES="build-*/**/*.tar.gz"
if [[ $FILENAMES =~ '*' ]]; then
FILENAMES=$(ls $FILENAMES | sed -e ':a' -e 'N' -e '$!ba' -e 's/\n/ /g')
fi
# all prebuilds
FILENAMES=$(find build-* -type f -name '*.tar.gz' | tr '\n' ' ')
FILENAMES="$FILENAMES ${{ env.package_file }}"
echo "FILES_TO_SIGN=${FILENAMES}" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 9f6497b

Please sign in to comment.