Skip to content

Revert "v3.21.0"

Revert "v3.21.0" #202

Workflow file for this run

name: bump
on:
push:
branches:
- merge-changelogs
workflow_dispatch:
inputs:
majorVersion:
description: Mandatory, when bumping a major version. Semver compatible version string (X.Y.Z). Must not be set for patch and minor version releases.
required: false
env:
INPUT_MAJOR_VERSION: ${{ inputs.majorVersion }}
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_CLOUD_SDK_JS_ADMIN_WRITE_TOKEN }}
# ref: 'main'
- uses: actions/setup-node@v3
with:
node-version: 18
- run: ls ${{ github.workspace }}/scripts
- run: yarn install --frozen-lockfile
- name: Setup git
run: |
git config --global user.email "[email protected]"
git config --global user.name "cloud-sdk-js"
- name: Bump version
id: bump
uses: ./.github/actions/changesets-fixed-version-bump
- run: |
yarn ts-node ${{ github.workspace }}/scripts/update-documentation-md.ts
yarn generate
yarn doc
env:
NEXT_PACKAGE_VERSION: ${{ steps.bump.outputs.version }}
- id: get-workspaces
run: |
workspaces=`yarn -s ts-node ${{ github.workspace }}/scripts/get-workspaces.ts`
echo $workspaces
echo "workspaces=$workspaces" >> $GITHUB_OUTPUT
- name: Merge Changelogs
id: merge-changelogs
uses: ./.github/actions/merge-changelogs
with:
workspaces: ${{ steps.get-workspaces.outputs.workspaces }}
- run: yarn -s ts-node ${{ github.workspace }}/scripts/write-changelog.ts
env:
CHANGELOG: ${{ steps.merge-changelogs.outputs.changelog }}
- name: Commit and tag
uses: ./.github/actions/commit-and-tag
with:
version: ${{ steps.bump.outputs.version }}