Skip to content

Commit

Permalink
Experimental version of release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dexter2206 committed Feb 20, 2022
1 parent 4f914ca commit 874822f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release package
on: workflow_dispatch


jobs:
release:
steps:
- name: Generate changelog
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
git-message: 'chore(release): {version}'
tag-prefix: 'v'
output-file: 'changelog.md'
release-count: '1000'
version-file: './Project.toml' // or .yml, .yaml, .toml
version-path: 'version'
- name: Register version
uses: julia-actions/RegisterAction@latest
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: ${{ steps.changelog.version }}

0 comments on commit 874822f

Please sign in to comment.