Skip to content

Commit

Permalink
ci: tagging pipeline (#3)
Browse files Browse the repository at this point in the history
* ci: tagging pipeline and necessary tooling

* chore(release): 0.0.1
  • Loading branch information
shoriwe authored Aug 18, 2023
1 parent 234f1e1 commit 45d0303
Show file tree
Hide file tree
Showing 6 changed files with 2,141 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tagging.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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 "[email protected]"
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 0.0.1 (2023-08-18)
Loading

0 comments on commit 45d0303

Please sign in to comment.