Skip to content

chore: auto release by github action #12

chore: auto release by github action

chore: auto release by github action #12

Workflow file for this run

name: release
on:
push:
branches: [ master ]
tags:
- v*
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# include git history for semantic-version
fetch-depth: 20
fetch-tags: true
- name: dump git
run: |
git tag -l
git log --decorate --oneline -20
- name: Get Next Version
id: semver
uses: ietf-tools/semver-action@v1
with:
token: ${{ github.token }}
branch: master