Skip to content

Commit a974276

Browse files
set up environment correctly
1 parent f59270e commit a974276

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/release.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
on:
22
push:
33
branches: ["6.1"]
4-
5-
# temporary to allow running of action
6-
pull_request:
7-
branches: ["main"]
8-
workflow_dispatch: {}
4+
workflow_dispatch: {}
95

106
permissions:
117
contents: write
@@ -61,6 +57,17 @@ jobs:
6157
npm_package_name: mongodb-client-encryption
6258
dry_run: ${{ needs.release_please.outputs.release_created == '' }}
6359

60+
- name: Set up silk environment
61+
shell: bash
62+
run: |
63+
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+
6471
- name: Copy sbom file to release assets
6572
shell: bash
6673
if: ${{ 'mongodb-client-encryption-6.1' == '' }}

0 commit comments

Comments
 (0)