From 7b63e4a5986383e70961e95fa4a8ab8fbbf26928 Mon Sep 17 00:00:00 2001 From: Mitchell Krog Date: Mon, 5 Jul 2021 13:58:34 +0200 Subject: [PATCH] [GHA] Add releases.yml - Test --- .github/workflows/releases.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/releases.yml diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml new file mode 100644 index 000000000..15e9d7182 --- /dev/null +++ b/.github/workflows/releases.yml @@ -0,0 +1,25 @@ +name: "tagged-release" + +on: + push: + tags: + - "V*" + +jobs: + tagged-release: + name: "Tagged Release" + runs-on: "ubuntu-latest" + + steps: + # ... + - name: "Deploy Release" + run: | + echo "done!" + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false + files: | + README.md + LICENSE.md