From 8f3806d43ed0fd3df126281d017b5d7c6ac05b84 Mon Sep 17 00:00:00 2001 From: nlukic-blvd Date: Fri, 11 Mar 2022 15:58:41 +0100 Subject: [PATCH] Adds github workflow for release generation --- .github/workflows/github-actions.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/github-actions.yml diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml new file mode 100644 index 0000000..ca33afa --- /dev/null +++ b/.github/workflows/github-actions.yml @@ -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