Skip to content

Commit 7848c81

Browse files
add version correctly
1 parent e9eb807 commit 7848c81

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: actions/setup
3636
uses: ./.github/actions/setup
3737
- name: Get release version and release package file name
38-
id: get_vars
38+
id: get_version
3939
shell: bash
4040
run: |
4141
package_version=$(jq --raw-output '.version' package.json)
@@ -63,7 +63,7 @@ jobs:
6363
sarif_report_target_ref: 5.x
6464
third_party_dependency_tool: n/a
6565
# <package> and <package>.sig
66-
dist_filenames: ${{ steps.get_vars.outputs.package_file }}*
66+
dist_filenames: ${{ steps.get_version.outputs.package_file }}*
6767
token: ${{ github.token }}
6868
sbom_file_name: sbom.json
6969
- uses: mongodb-labs/drivers-github-tools/upload-s3-assets@v2

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: actions/setup
3434
uses: ./.github/actions/setup
3535
- name: Get release version and release package file name
36-
id: get_vars
36+
id: get_version
3737
shell: bash
3838
run: |
3939
package_version=$(jq --raw-output '.version' package.json)
@@ -61,7 +61,7 @@ jobs:
6161
sarif_report_target_ref: main
6262
third_party_dependency_tool: n/a
6363
# <package> and <package>.sig
64-
dist_filenames: ${{ steps.get_vars.outputs.package_file }}*
64+
dist_filenames: ${{ steps.get_version.outputs.package_file }}*
6565
token: ${{ github.token }}
6666
sbom_file_name: sbom.json
6767

0 commit comments

Comments
 (0)