Skip to content

chore(release): 1.0.1 #13

chore(release): 1.0.1

chore(release): 1.0.1 #13

Workflow file for this run

name: Master
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
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
- 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