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: