File tree Expand file tree Collapse file tree 2 files changed +18
-8
lines changed
actions/compress_sign_and_upload Expand file tree Collapse file tree 2 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 50
50
run : mv ${{ steps.get_vars.outputs.package_file }}.temp.sig ${{ steps.get_vars.outputs.package_file }}.sig
51
51
shell : bash
52
52
53
- - name : " Upload release artifacts"
54
- run : gh release upload v${{ steps.get_vars.outputs.package_version }} ${{ steps.get_vars.outputs.package_file }}.sig
55
- shell : bash
56
- env :
57
- GH_TOKEN : ${{ github.token }}
53
+ - name : Temporary step - Upload artifacts and check signature exists
54
+ uses : actions/upload-artifact@v4
55
+ with :
56
+ name : ${{ env.PACKAGE_FILE }}
57
+ path : |
58
+ ${{ env.PACKAGE_FILE }}
59
+ ${{ env.PACKAGE_FILE }}.sig
60
+ retention-days : 3
61
+
62
+ # - name: "Upload release artifacts"
63
+ # run: gh release upload v${{ steps.get_vars.outputs.package_version }} ${{ steps.get_vars.outputs.package_file }}.sig
64
+ # shell: bash
65
+ # env:
66
+ # GH_TOKEN: ${{ github.token }}
Original file line number Diff line number Diff line change 21
21
22
22
compress_sign_and_upload :
23
23
needs : [release_please]
24
+ # if: ${{ needs.release_please.outputs.release_created }}
24
25
environment : release
25
26
runs-on : ubuntu-latest
26
27
steps :
34
35
aws_region_name : ' us-east-1'
35
36
aws_secret_id : ${{ secrets.AWS_SECRET_ID }}
36
37
npm_package_name : ' bson'
37
- - run : npm publish --provenance
38
- env :
39
- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
38
+ # - run: npm publish --provenance
39
+ # env:
40
+ # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
40
41
41
42
generate_sarif_report :
42
43
environment : release
You can’t perform that action at this time.
0 commit comments