Skip to content

chore(release): v1.12.0 #24

chore(release): v1.12.0

chore(release): v1.12.0 #24

Workflow file for this run

name: Release
on:
push:
branches: [ "master" ]
tags-ignore:
- '**'
jobs:
release:
runs-on: ubuntu-latest
if: startsWith(github.event.head_commit.message, 'chore(release):') != true
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PA }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Bump version
run: |
git config --global user.name 'BDX.town'
git config --global user.email '[email protected]'
npx commit-and-tag-version
git push --follow-tag origin master