From 702e7aa6578e2eea53c1d281994ebd2992ee94bd Mon Sep 17 00:00:00 2001 From: Stefan Seifert Date: Mon, 5 Dec 2022 19:42:38 +0100 Subject: [PATCH] release from tag --- .github/workflows/release-from-tag.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-from-tag.yml diff --git a/.github/workflows/release-from-tag.yml b/.github/workflows/release-from-tag.yml new file mode 100644 index 0000000..ccfe8de --- /dev/null +++ b/.github/workflows/release-from-tag.yml @@ -0,0 +1,18 @@ +name: Release from Tag + +on: + push: + tags: + - '*' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + - uses: ncipollo/release-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}