Skip to content

chore(release): 2.1.71 #396

chore(release): 2.1.71

chore(release): 2.1.71 #396

Workflow file for this run

name: Master
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
if: startsWith(github.event.head_commit.message, 'chore(release):') == false
steps:
- name: Create GitHub App Token
uses: actions/[email protected]
id: generate-token
with:
app-id: ${{ secrets.GH_APP_ID }}
private-key: ${{ secrets.GH_APP_KEY }}
- uses: actions/checkout@v3
with:
token: ${{ steps.generate-token.outputs.token }}
submodules: recursive
fetch-depth: 0
- uses: actions/[email protected]
with:
node-version: 21
- run: npm install -g commit-and-tag-version
- run: |
git config --global user.name "DemyCode"
git config --global user.email "[email protected]"
- run: |
commit-and-tag-version
- run: git push --follow-tags