Skip to content

Commit

Permalink
Adds github workflow for release generation
Browse files Browse the repository at this point in the history
  • Loading branch information
nlukic-blvd committed Mar 11, 2022
1 parent ef3e54a commit 8f3806d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Tagged release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
# ...
#- name: "Build & test"
# run: |
# echo "When we add tests run them!"

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false

0 comments on commit 8f3806d

Please sign in to comment.