Release #14
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: release | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseType: | |
description: 'Release type (one of): patch, minor, major' | |
required: true | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
release: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ env.HEXANCORE_BOT_TOKEN }} | |
env: | |
HEXANCORE_BOT_TOKEN: ${{ secrets.HEXANCORE_BOT_TOKEN }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
node-version: 20.x | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: docker-compose up | |
run: make up | |
# Bump version | |
- name: Bump package version | |
run: | | |
yarn version $RELEASE_TYPE | |
echo "RELEASE_TAG=latest" >> $GITHUB_ENV | |
echo "NEW_VERSION=$(jq -r '.version' < package.json)" >> $GITHUB_ENV | |
env: | |
RELEASE_TYPE: ${{ inputs.releaseType }} | |
# Publish package | |
- name: Publish | |
run: | | |
echo -e "\nnpmAuthToken: '${{ env.NODE_AUTH_TOKEN }}'" >> ./.yarnrc.yml | |
yarn npm publish --access public --tag ${{ env.RELEASE_TAG }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Update CHANGELOG.md | |
uses: 'zen8sol/[email protected]' | |
with: | |
newVersion: '${{ env.NEW_VERSION }}' | |
# Commit | |
- name: Commit CHANGELOG.md and package.json changes and create tag | |
#env: | |
# HEXANCORE_BOT_TOKEN: ${{ secrets.HEXANCORE_BOT_TOKEN }} | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Hexancore Bot" | |
#git remote set-url origin https://x-access-token:${{ env.HEXANCORE_BOT_TOKEN }}@github.com/${{ github.repository }} | |
git add "package.json" | |
git add "CHANGELOG.md" | |
git commit -m "chore: release ${{ env.NEW_VERSION }}" | |
git tag -m 'new version' ${{ env.NEW_VERSION }} | |
git push --follow-tags | |
# Docker compose down | |
- name: docker-compose down | |
run: make down |