docs: update main to trigger CI (#29) #12
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: Tagging | |
on: | |
push: | |
branches: ["dev"] | |
jobs: | |
tagging: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: "npm" | |
- name: Git Identity | |
run: | | |
git checkout dev | |
git fetch --all --tags | |
git config --global user.email "antoniojosedonishung@gmail.com" | |
git config --global user.name "Antonio Donis" | |
- name: Changelog | |
run: 'npx standard-version --message "[ci skip] chore(release): %s"' | |
- name: Push changes | |
run: git push --follow-tags --force origin dev |