Promote release #171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Promote release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version to promote (eg: 2025.x.0-rc.y)' | |
required: true | |
referenceBranch: | |
description: 'Branch to be updated after the promotion' | |
required: true | |
default: 'lts-2025' | |
dryRun: | |
description: 'Run the workflow without pushing code or publishing artifacts' | |
type: boolean | |
required: false | |
env: | |
LERNA: [email protected] | |
jobs: | |
promote: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://packages.nuxeo.com/repository/npm-public/' | |
scope: '@nuxeo' | |
- uses: actions/checkout@v2 | |
with: | |
ref: v${{ github.event.inputs.version }} | |
- run: git config user.name "nuxeo-webui-jx-bot" && git config user.email "[email protected]" | |
# Extract VERSION from the new format 2025.x.0-rc.y to get 2025.x.0 | |
- run: echo "VERSION=$(echo '${{ github.event.inputs.version }}' | sed -E 's/-rc\.[0-9]+//')" >> $GITHUB_ENV | |
- name: Update Nuxeo Elements version to ${{ env.VERSION }} | |
run: | | |
npm version $VERSION --no-git-tag-version | |
npx ${{ env.LERNA }} version $VERSION --no-push --force-publish --no-git-tag-version --yes | |
- name: Tag Nuxeo Elements v${{ env.VERSION }} | |
run: | | |
git commit -a -m "Release $VERSION" | |
git tag -a v$VERSION -m "Release $VERSION" | |
- if: ${{ github.event.inputs.dryRun == 'false' }} | |
run: git push origin v$VERSION | |
- name: Create Github release v${{ env.VERSION }} | |
if: ${{ github.event.inputs.dryRun == 'false' }} | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v${{ env.VERSION }} | |
release_name: Release ${{ env.VERSION }} | |
- name: Publish to https://packages.nuxeo.com/repository/npm-public/ (dry run) | |
if: ${{ github.event.inputs.dryRun == 'true' }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | |
run: | | |
npx ${{ env.LERNA }} exec --ignore @nuxeo/nuxeo-elements-storybook -- npm publish --@nuxeo:registry=https://packages.nuxeo.com/repository/npm-public/ --dry-run | |
- name: Publish to https://packages.nuxeo.com/repository/npm-public/ | |
if: ${{ github.event.inputs.dryRun == 'false' }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | |
run: | | |
npx ${{ env.LERNA }} exec --ignore @nuxeo/nuxeo-elements-storybook -- npm publish --@nuxeo:registry=https://packages.nuxeo.com/repository/npm-public/ | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GIT_ADMIN_TOKEN }} | |
ref: ${{ github.event.inputs.referenceBranch }} | |
- if: ${{ github.event.inputs.referenceBranch == 'master' }} | |
run: echo "NEW_VERSION=$(npx semver -i minor $VERSION)-SNAPSHOT" >> $GITHUB_ENV | |
- if: ${{ github.event.inputs.referenceBranch != 'master' }} | |
run: echo "NEW_VERSION=$(npx semver -i minor $VERSION)-SNAPSHOT" >> $GITHUB_ENV | |
- name: Align ${{ github.event.inputs.referenceBranch }} branch on next version ${{ env.NEW_VERSION }} | |
run: | | |
npm version $NEW_VERSION --no-git-tag-version | |
npx ${{ env.LERNA }} version $NEW_VERSION --no-push --force-publish --no-git-tag-version --yes | |
# commit and push | |
git commit -a -m "Update to $NEW_VERSION" | |
- if: ${{ github.event.inputs.dryRun == 'false' }} | |
run: git push origin ${{ github.event.inputs.referenceBranch }} |