From bdf59d13d9d2c44e47989108fee75ba83c33d29b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robbert=20M=C3=BCller?= Date: Sun, 14 Jun 2020 15:48:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96Automatic=20github=20tag=20to=20rel?= =?UTF-8?q?ease=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..83ac6a1 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +--- +on: + push: + # Sequence of patterns matched against refs/tags + tags: + - "v*" + +name: Create Release + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: true + prerelease: false