Skip to content

Commit

Permalink
temp for reset
Browse files Browse the repository at this point in the history
  • Loading branch information
aditi-khare-mongoDB committed May 22, 2024
1 parent 61c8949 commit df748cf
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,41 @@ jobs:
- id: release
uses: google-github-actions/release-please-action@v4


# If release-please created a release, publish to npm
- if: ${{ steps.release.outputs.release_created }}
- if: steps.release.outputs.release_created
uses: actions/checkout@v4
- if: ${{ steps.release.outputs.release_created }}
- if: steps.release.outputs.release_created
name: actions/setup
uses: ./.github/actions/setup
- if: ${{ steps.release.outputs.release_created }}
- if: steps.release.outputs.release_created
run: npm pack
shell: bash
- if: steps.release.outputs.release_created
name: Get release version and release package file name
run: |
PACKAGE_VERSION=$(jq '.version' package.json | tr -d '"')
echo "PACKAGE_VERSION=${PACKAGE_VERSION}" >> "$GITHUB_ENV"
echo "PACKAGE_FILE=bson-${PACKAGE_VERSION}.tgz" >> "$GITHUB_ENV"
- if: steps.release.outputs.release_created
name: Create detached signature
uses: mongodb-labs/drivers-github-tools/garasign/gpg-sign@main
with:
filenames: ${{ env.PACKAGE_FILE }}
garasign_username: ${{ secrets.GRS_CONFIG_USER1_USERNAME }}
garasign_password: ${{ secrets.GRS_CONFIG_USER1_PASSWORD }}
artifactory_username: ${{ secrets.ARTIFACTORY_USER }}
artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }}
- if: steps.release.outputs.release_created
name: "Upload artifacts"
uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE_FILE }}
path: |
${{ env.PACKAGE_FILE }}
${{ env.PACKAGE_FILE }}.sig
retention-days: 3
- if: steps.release.outputs.release_created
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit df748cf

Please sign in to comment.