Skip to content

refactor: add release workflow #3

refactor: add release workflow

refactor: add release workflow #3

name: Node-Rest-Client Release
on:
push:
branches:
- feat/general-upgrade
workflow_dispatch:
jobs:
create-release-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
# - id: #
# name: configure git
# run: |
# # setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
# git --version
# git config user.name "GitHub Actions Bot"
# git config user.email "<>"
# git status
# git tag
# git describe
- id: readLatestTag
name: read latest tag
run: echo "LATEST_TAG=$(git describe --tags --abbrev=0)" >> "$GITHUB_OUTPUT"
- run: |
echo "create a release branch using the tag value"
export BRANCH_NAME='release/$LATEST_TAG'
git checkout -b $BRANCH_NAME
git push origin
# test
- id: changesetPR
name: Create Release Pull Request
uses: changesets/action@v1
with:
version: npm run version:packages