Version - PR #59
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: Version - PR | |
on: | |
workflow_dispatch: | |
inputs: | |
packageVersion: | |
description: "The version to publish in MAJOR.MINOR.PATCH format" | |
required: true | |
default: "" | |
jobs: | |
authorize: | |
name: Authorize | |
runs-on: ubuntu-latest | |
steps: | |
- name: ${{ github.actor }} permission check to update release version | |
uses: "lannonbr/[email protected]" | |
with: | |
permission: "write" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
version: | |
name: Updates package version | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/wallet-sdk | |
needs: [authorize] | |
env: | |
PACKAGE_VERSION: ${{ github.event.inputs.packageVersion }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: '**/yarn.lock' | |
- name: Update version | |
run: npm version ${{ env.PACKAGE_VERSION }} --no-git-tag-version --workspaces-update=false | |
- name: Install NPM dependencies | |
run: yarn install --immutable | |
- name: Update version.ts file | |
run: yarn prebuild | |
- name: Commit and branch updated version | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
title: "[Version update] v${{ env.PACKAGE_VERSION }}" | |
body: "Automated workflow: version update" | |
branch: release-v${{ env.PACKAGE_VERSION }} | |
delete-branch: true | |
commit-message: "v${{ env.PACKAGE_VERSION }}" | |
labels: version-update |