We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f59270e commit a974276Copy full SHA for a974276
.github/workflows/release.yml
@@ -1,11 +1,7 @@
1
on:
2
push:
3
branches: ["6.1"]
4
-
5
- # temporary to allow running of action
6
- pull_request:
7
- branches: ["main"]
8
- workflow_dispatch: {}
+ workflow_dispatch: {}
9
10
permissions:
11
contents: write
@@ -61,6 +57,17 @@ jobs:
61
57
npm_package_name: mongodb-client-encryption
62
58
dry_run: ${{ needs.release_please.outputs.release_created == '' }}
63
59
60
+ - name: Set up silk environment
+ shell: bash
+ run: |
+ set -eu
64
+ SILKBOMB_ENVFILE=/tmp/silkbomb-envfile
65
+ cat << EOF > $SILKBOMB_ENVFILE
66
+ SILK_CLIENT_ID=${SILKBOMB_USER}
67
+ SILK_CLIENT_SECRET=${SILKBOMB_KEY}
68
+ EOF
69
+ echo 'SILKBOMB_ENVFILE=$SILKBOMB_ENVFILE' >> $GITHUB_ENV
70
+
71
- name: Copy sbom file to release assets
72
shell: bash
73
if: ${{ 'mongodb-client-encryption-6.1' == '' }}
0 commit comments