Skip to content

Commit 804c866

Browse files
don't execute filenames
1 parent c346ffa commit 804c866

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

node/sign_node_package/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ runs:
5757
run: |
5858
# all prebuilds
5959
FILENAMES=$(find build-* -type f -name '*.tar.gz')
60-
echo "$FILENAMES"
61-
echo $FILENAMES
6260
FILENAMES=$(echo "$FILENAMES")
6361
FILENAMES="$FILENAMES ${{ env.package_file }}"
64-
echo "FILES_TO_SIGN=${FILENAMES}" >> "$GITHUB_ENV"
62+
63+
echo $FILENAMES
64+
echo "FILES_TO_SIGN=$FILENAMES" >> "$GITHUB_ENV"
6565
6666
- name: Determine what files to sign (non-native packages, with only the release tarball)
6767
if: ${{ inputs.sign_native != 'true' }}

0 commit comments

Comments
 (0)