update docs and clean up (#30) #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
bump: | |
name: Create Release | |
# runs when commit message starts with 'bump version:' | |
if: startsWith(github.event.head_commit.message, 'bump version:') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.AXILLA_PAT }} | |
- name: Create Release | |
id: release | |
uses: justincy/[email protected] | |
with: | |
token: ${{ secrets.AXILLA_PAT }} | |
- name: Release Details | |
if: ${{ steps.release.outputs.released == 'true' }} | |
run: echo Release ID ${{ steps.release.outputs.release_id }} |