Skip to content

Commit e901a41

Browse files
local test 9
1 parent 9a70bb1 commit e901a41

File tree

1 file changed

+4
-4
lines changed
  • .github/actions/compress_sign_and_upload

1 file changed

+4
-4
lines changed

.github/actions/compress_sign_and_upload/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ runs:
1515
using: composite
1616
steps:
1717
- run: npm pack
18-
shell: ubuntu-latest
18+
shell: bash
1919
- name: Get release version and release package file name
2020
id: vars
2121
run: |
2222
package_version=$(jq --raw-output '.version' package.json)
2323
echo "package_version=${package_version}" >> "$GITHUB_OUTPUT"
2424
echo "package_file=bson-${package_version}.tgz" >> "$GITHUB_OUTPUT"
25-
shell: ubuntu-latest
25+
shell: bash
2626
- name: Create detached signature
2727
uses: mongodb-labs/drivers-github-tools/garasign/gpg-sign@v1
2828
with:
@@ -31,8 +31,8 @@ runs:
3131
garasign_password: ${{ inputs.garasign_password }}
3232
artifactory_username: ${{ inputs.artifactory_username }}
3333
artifactory_password: ${{ inputs.artifactory_password }}
34-
shell: ubuntu-latest
34+
shell: bash
3535
- if: false
3636
name: "Upload release artifacts"
3737
run: gh release upload v${{ steps.vars.package_version }} ${{ steps.vars.package_file }}.sig
38-
shell: ubuntu-latest
38+
shell: bash

0 commit comments

Comments
 (0)