Skip to content

Start new GA release #50

Start new GA release

Start new GA release #50

Workflow file for this run

# Starts a new GA from the latest beta or
# from another branch, the release version is taken from the fixVersion of the
# Release ticket supplied as input.
name: Start new GA release
on:
workflow_dispatch:
inputs:
releaseTicket:
description: "releaseTicket (required): it must have a fixVersion which will be used as release version."
required: true
mergeBranch:
description: 'mergeBranch (optional, default="beta-releases"): the branch to merge from, useful to perform quick fixes or to skip beta.'
default: "beta-releases"
required: false
permissions:
contents: write # To create the new branch and push it
actions: write # To trigger the codeql action for the commit from which we're releasing
jobs:
startRelease:
name: Start new GA release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup git
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- uses: actions/setup-node@v4
with:
node-version: 20.16.0
cache: "npm"
- name: Install [email protected]
run: |
npm install -g [email protected]
- name: Install Dependencies
run: |
npm -v
npm ci
- name: Start Release
env:
GH_TOKEN: ${{ github.token }}
run: |
node scripts/release.js ga \
--release-ticket="${{ github.event.inputs.releaseTicket }}" \
--merge-branch="${{ github.event.inputs.mergeBranch || 'beta-releases' }}" \
--submitter="${{ github.actor }}"