Skip to content

Commit

Permalink
ci: Add file to create releases and do automatic versioning #242
Browse files Browse the repository at this point in the history
  • Loading branch information
MRichards99 committed Oct 29, 2021
1 parent 7223be1 commit 4358f68
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Build
on:
push:
branches:
- master

jobs:
build:
name: Release Build
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Python Semantic Release
uses: relekang/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4358f68

Please sign in to comment.