Skip to content

Commit

Permalink
chore: add release workflow (#11)
Browse files Browse the repository at this point in the history
* add release workflow
  • Loading branch information
agus-xyz authored Jul 25, 2022
1 parent 91b6ef1 commit e009630
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release
on:
push:
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Preparing release body
run: |
touch CHANGELOG.md
echo '### Changelog' >> CHANGELOG.md
echo '------' >> CHANGELOG.md
cat CHANGELOG.md
- name: Create Release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Fontana ${{ github.ref }}
body_path: CHANGELOG.md

0 comments on commit e009630

Please sign in to comment.