From df748cf18a9b32aab11b04ac002ee7ab94056caf Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Wed, 22 May 2024 13:38:35 -0400 Subject: [PATCH] temp for reset --- .github/workflows/release.yml | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b58b4a44..cd04bc67 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}