File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
.github/actions/compress_sign_and_upload Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ runs:
15
15
using : composite
16
16
steps :
17
17
- run : npm pack
18
- shell : bash
18
+ shell : ubuntu-latest
19
19
- name : Get release version and release package file name
20
20
id : vars
21
21
run : |
22
22
package_version=$(jq --raw-output '.version' package.json)
23
23
echo "package_version=${package_version}" >> "$GITHUB_OUTPUT"
24
24
echo "package_file=bson-${package_version}.tgz" >> "$GITHUB_OUTPUT"
25
- shell : bash
25
+ shell : ubuntu-latest
26
26
- name : Create detached signature
27
27
uses : mongodb-labs/drivers-github-tools/garasign/gpg-sign@v1
28
28
with :
31
31
garasign_password : ${{ inputs.garasign_password }}
32
32
artifactory_username : ${{ inputs.artifactory_username }}
33
33
artifactory_password : ${{ inputs.artifactory_password }}
34
+ shell : ubuntu-latest
34
35
- if : false
35
36
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
You can’t perform that action at this time.
0 commit comments