Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

ci: created release and package release (#10) #2

ci: created release and package release (#10)

ci: created release and package release (#10) #2

Workflow file for this run

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