Skip to content

fix: adding the commit and tag version correctly #2

fix: adding the commit and tag version correctly

fix: adding the commit and tag version correctly #2

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/setup-node@v1
with:
node-version: 12
- run: npm install -g commit-and-tag-version
- run: npm run commit-and-tag-version
- run: git push --follow-tags