Skip to content

update docs and clean up (#30) #25

update docs and clean up (#30)

update docs and clean up (#30) #25

Workflow file for this run

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 }}