We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c346ffa commit 804c866Copy full SHA for 804c866
node/sign_node_package/action.yml
@@ -57,11 +57,11 @@ runs:
57
run: |
58
# all prebuilds
59
FILENAMES=$(find build-* -type f -name '*.tar.gz')
60
- echo "$FILENAMES"
61
- echo $FILENAMES
62
FILENAMES=$(echo "$FILENAMES")
63
FILENAMES="$FILENAMES ${{ env.package_file }}"
64
- echo "FILES_TO_SIGN=${FILENAMES}" >> "$GITHUB_ENV"
+
+ echo $FILENAMES
+ echo "FILES_TO_SIGN=$FILENAMES" >> "$GITHUB_ENV"
65
66
- name: Determine what files to sign (non-native packages, with only the release tarball)
67
if: ${{ inputs.sign_native != 'true' }}
0 commit comments