We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25b9cf0 commit 880f30dCopy full SHA for 880f30d
.github/workflows/release.yml
@@ -46,6 +46,13 @@ jobs:
46
with:
47
npm_package_name: mongodb-client-encryption
48
49
+ - run: |
50
+ FILENAMES="build-*/*.tar.gz ${{ env.package_file }}"
51
+ echo "FILES FILES"
52
+ echo $FILENAMES
53
+ echo "FILES_TO_SIGN=${FILENAMES}" >> "$GITHUB_ENV"
54
+ shell: bash
55
+
56
- name: actions/sign_and_upload_package
57
uses: ./.github/actions/sign_and_upload_package
58
@@ -54,7 +61,7 @@ jobs:
61
aws_secret_id: ${{ secrets.AWS_SECRET_ID }}
62
npm_package_name: 'mongodb-client-encryption'
63
dry_run: ${{ needs.release_please.outputs.release_created == '' }}
- filenames: 'build-*/*.tar.gz ${{ env.package_file }}'
64
+ filenames: ${{ env.FILES_TO_SIGN }}
65
artifact_directory: artifacts
59
66
60
67
- name: Copy sbom file to release assets
0 commit comments