From 87f202cd5d21a6404e574d98277c816595d10993 Mon Sep 17 00:00:00 2001 From: Nicola Demo Date: Mon, 11 Jul 2022 17:53:37 +0200 Subject: [PATCH] Create create-release.yml --- .github/workflows/create-release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..946ce9d --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,18 @@ +name: Releases + +on: + push: + tags: + - '*' + +jobs: + + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v2 + - uses: ncipollo/release-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}