Skip to content

Commit

Permalink
chore: bring workflow changes from 5.12 (#7074)
Browse files Browse the repository at this point in the history
Automate some of our manual release steps
  • Loading branch information
gastonfournier committed May 17, 2024
1 parent cc0ff21 commit 65018b8
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 8 deletions.
67 changes: 65 additions & 2 deletions .github/workflows/publish-new-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,23 @@ concurrency:

permissions:
contents: write
id-token: write

on:
workflow_dispatch:
inputs:
version:
description: What version number would you like to use? The version number should be **without** a leading `v`, e.g. `5.7.1` or `6.2.4`.
bump-main:
description: Should we bump the package.json main version?
required: true
type: boolean
default: true
update-version-function:
description: Should we update the version function to use this version?
required: true
type: boolean
default: true

jobs:
build:
Expand All @@ -27,10 +38,10 @@ jobs:
fetch-depth: 0
token: ${{ secrets.GH_PUSH_TOKEN }}
- name: Set up git-cliff
uses: kenji-miyake/setup-git-cliff@v1
uses: kenji-miyake/setup-git-cliff@v2
- name: setup git config
run: |
git config user.name "GitHub Actions Bot"
git config user.name "Github Actions Bot"
git config user.email "<>"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down Expand Up @@ -59,3 +70,55 @@ jobs:
git push --tags
env:
CI: true

update-main-version:
needs: build
if: ${{ github.event.inputs.bump-main == 'true' }}
runs-on: ubuntu-latest

steps:
- name: checkout main branch
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
token: ${{ secrets.GH_PUSH_TOKEN }}
- name: setup git config
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Use Node js 18
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
- name: upgrade package version
run: |
jq --arg version "${{ github.event.inputs.version }}+main" '.version=$version' package.json > package.json.tmp
mv package.json.tmp package.json
- name: lint
run: |
yarn install --frozen-lockfile --ignore-scripts
yarn lint:fix
- name: push changes
run: |
git add package.json
git commit -m "chore: bump version to ${{ github.event.inputs.version }}+main"
git push origin main
update-version-checker:
needs: build
if: ${{ github.event.inputs.update-version-function == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Authenticate Google IAM
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: 'projects/340004706233/locations/global/workloadIdentityPools/gh-actions-pool/providers/github-actions-oidc-unleash'
service_account: 'versionUpdateSa@metrics-304612.iam.gserviceaccount.com'
token_format: 'access_token'
- name: Update version checker
uses: 'Unleash/update-version-action@v0'
with:
version: ${{ github.event.inputs.version }}
distribution: 'oss'
6 changes: 0 additions & 6 deletions .github/workflows/update_version_for_version_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ jobs:
workload_identity_provider: 'projects/340004706233/locations/global/workloadIdentityPools/gh-actions-pool/providers/github-actions-oidc-unleash'
service_account: 'versionUpdateSa@metrics-304612.iam.gserviceaccount.com'
token_format: 'access_token'
- name: Update version
if: ${{ github.event_name == 'release' }}
uses: 'Unleash/update-version-action@v0'
with:
version: ${{ github.event.release.tag_name }}
distribution: 'oss'
- name: Update version from manual dispatch
if: ${{ inputs.version != '' }}
uses: 'Unleash/update-version-action@v0'
Expand Down

0 comments on commit 65018b8

Please sign in to comment.