Skip to content

Commit

Permalink
chore: bring back proper order
Browse files Browse the repository at this point in the history
  • Loading branch information
durran committed Jun 13, 2024
1 parent d77f37e commit c412d5a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/actions/sign_and_upload_package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ runs:
shell: bash
run: ls -la artifacts/

# - name: "Upload release artifacts"
# run: gh release upload v${{ steps.get_vars.outputs.package_version }} artifacts/*.*
# shell: bash
# env:
# GH_TOKEN: ${{ github.token }}
- name: "Upload release artifacts"
run: gh release upload v${{ steps.get_vars.outputs.package_version }} artifacts/*.*
shell: bash
env:
GH_TOKEN: ${{ github.token }}
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,8 @@ jobs:
uses: googleapis/release-please-action@v4

sign_and_upload:
needs: [host_builds, container_builds]
# needs: [release_please]
# if: ${{ needs.release_please.outputs.release_created }}
needs: [release_please]
if: ${{ needs.release_please.outputs.release_created }}
runs-on: ubuntu-latest
environment: release
steps:
Expand All @@ -96,6 +95,6 @@ jobs:
aws_region_name: 'us-east-1'
aws_secret_id: ${{ secrets.AWS_SECRET_ID }}
npm_package_name: 'mongodb-client-encryption'
# - run: npm publish --provenance
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit c412d5a

Please sign in to comment.