From 680319596a9ee7c000efaa5ed39be6c804f6f21a Mon Sep 17 00:00:00 2001 From: Maurizio Cacace Date: Tue, 14 Mar 2023 09:25:48 +0100 Subject: [PATCH] ACS-4814 - Use PR id for library publishing (#3061) * ACS-4814 Use PR id for library publishing * ACS-4814 Use PR id for library publishing --- .github/actions/update-library-versions/action.yml | 2 +- .github/workflows/release.yml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/actions/update-library-versions/action.yml b/.github/actions/update-library-versions/action.yml index 20eafdb628..61dd03708a 100644 --- a/.github/actions/update-library-versions/action.yml +++ b/.github/actions/update-library-versions/action.yml @@ -22,7 +22,7 @@ runs: if [[ ${{ inputs.branch_name }} =~ ^master.*?$ ]] ; then NEW_LIBRARY_VERSION="$VERSION_IN_PACKAGE_JSON" else - NEW_LIBRARY_VERSION="${VERSION_IN_PACKAGE_JSON}-${{ github.run_id }}" + NEW_LIBRARY_VERSION="${VERSION_IN_PACKAGE_JSON}-${PR_NUMBER}" fi ./scripts/gh/update-lib-versions.sh "$NEW_LIBRARY_VERSION" "${{ inputs.dry-run }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44f1fd352e..c7764119bd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,6 +37,7 @@ env: REPO_SLUG: "alfresco/alfresco-content-app" NPM_REGISTRY_ADDRESS: ${{ secrets.NPM_REGISTRY_ADDRESS }} + jobs: publish-docker-registry: name: "Publish to Quay" @@ -126,6 +127,15 @@ jobs: node-version-file: '.nvmrc' cache: 'npm' - uses: ./.github/actions/setup + - name: check PR number + id: action + uses: kamatama41/get-pr-number-action@v0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + - name: save PR number + shell: bash + run: | + echo "PR_NUMBER=${{ steps.action.outputs.number }}" >> $GITHUB_ENV - name: publish uses: ./.github/actions/publish-libs with: