Skip to content

Commit 9a70bb1

Browse files
local test 8'
1 parent 09137b5 commit 9a70bb1

File tree

1 file changed

+5
-3
lines changed
  • .github/actions/compress_sign_and_upload

1 file changed

+5
-3
lines changed

.github/actions/compress_sign_and_upload/action.yml

Lines changed: 5 additions & 3 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: bash
18+
shell: ubuntu-latest
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: bash
25+
shell: ubuntu-latest
2626
- name: Create detached signature
2727
uses: mongodb-labs/drivers-github-tools/garasign/gpg-sign@v1
2828
with:
@@ -31,6 +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
3435
- if: false
3536
name: "Upload release artifacts"
36-
run: gh release upload v${{ steps.vars.package_version }} ${{ steps.vars.package_file }}.sig
37+
run: gh release upload v${{ steps.vars.package_version }} ${{ steps.vars.package_file }}.sig
38+
shell: ubuntu-latest

0 commit comments

Comments
 (0)