From 86bdc3a42f61acd11061bcbd4782868afa89af64 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Fri, 11 Nov 2022 09:32:52 +0000 Subject: [PATCH] Create automated GitHub Release workflow via tags --- .github/workflows/cd.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cd.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..ff93fb8 --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,18 @@ +name: cd + +on: + push: + tags: + - "v*" + +jobs: + tagged-release: + name: Tagged Release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Deploy release + uses: marvinpinto/action-automatic-releases@latest + with: + prerelease: false + repo_token: "${{ secrets.GITHUB_TOKEN }}"