forked from jakeherp/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 3
30 lines (28 loc) · 913 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
# steps:
# - name: Conventional Changelog
# id: changelog
# uses: TriPSs/conventional-changelog-action@v3
# with:
# github-token: ${{ secrets.github_token }}
# git-message: 'chore(release): {version}'
# git-user-name: 'Github Actions'
# git-user-email: 'jacob@herper.io'
# preset: 'angular'
# skip-on-empty: 'true'
# - name: Create Release
# uses: actions/create-release@v1
# if: ${{ steps.changelog.outputs.skipped == 'false' }}
# env:
# GITHUB_TOKEN: ${{ secrets.github_token }}
# with:
# tag_name: ${{ steps.changelog.outputs.tag }}
# release_name: ${{ steps.changelog.outputs.tag }}
# body: ${{ steps.changelog.outputs.clean_changelog }}