Skip to content

Commit 22d6dc4

Browse files
use env
1 parent fe0a98e commit 22d6dc4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/release-5.x.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ jobs:
5959

6060
- name: Copy sbom file to release assets
6161
shell: bash
62-
if: ${{ !'' }}
62+
if: ${{ '' == '' }}
6363
run: cp sbom.json ${{ env.S3_ASSETS }}/sbom.json
6464

6565
# only used for mongodb-client-encryption
6666
- name: Augment SBOM and copy to release assets
67-
if: ${{ ''}}
67+
if: ${{ '' != '' }}
6868
uses: mongodb-labs/drivers-github-tools/sbom@v2
6969
with:
70-
silk_asset_group: ${{ '' }}
70+
silk_asset_group: ''
7171
sbom_file_name: sbom.json
7272

7373
- name: Generate authorized pub report
@@ -78,7 +78,7 @@ jobs:
7878
sarif_report_target_ref: 5.x
7979
third_party_dependency_tool: n/a
8080
dist_filenames: artifacts/*
81-
token: ${{ github.token }}
81+
token: ${{ github.token }}
8282
sbom_file_name: sbom.json
8383
evergreen_project: mongo-node-driver-next
8484
evergreen_commit: ${{ env.commit }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ jobs:
5959

6060
- name: Copy sbom file to release assets
6161
shell: bash
62-
if: ${{ !'' }}
62+
if: ${{ '' == '' }}
6363
run: cp sbom.json ${{ env.S3_ASSETS }}/sbom.json
6464

6565
# only used for mongodb-client-encryption
6666
- name: Augment SBOM and copy to release assets
67-
if: ${{ ''}}
67+
if: ${{ '' != '' }}
6868
uses: mongodb-labs/drivers-github-tools/sbom@v2
6969
with:
70-
silk_asset_group: ${{ '' }}
70+
silk_asset_group: ''
7171
sbom_file_name: sbom.json
7272

7373
- name: Generate authorized pub report
@@ -78,7 +78,7 @@ jobs:
7878
sarif_report_target_ref: main
7979
third_party_dependency_tool: n/a
8080
dist_filenames: artifacts/*
81-
token: ${{ github.token }}
81+
token: ${{ github.token }}
8282
sbom_file_name: sbom.json
8383
evergreen_project: mongo-node-driver-next
8484
evergreen_commit: ${{ env.commit }}

0 commit comments

Comments
 (0)