Skip to content

.github/workflows/release.yml #5

.github/workflows/release.yml

.github/workflows/release.yml #5

Workflow file for this run

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
name: Release
jobs:
release:
name: SemVer release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{secrets.GITHUB_TOKEN}}
- run: |
git config user.name github-actions
git config user.email [email protected]
git config --global user.email [email protected]
git config --global user.name github-actions
- name: Upload github release
uses: softprops/action-gh-release@v1
with:
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}