From 9fede7b787c35916577bc17582e6abb062bb8990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=8F=CE=B1voro=CE=B7=CE=B1?= Date: Tue, 25 Aug 2020 15:33:28 +0300 Subject: [PATCH] Add release workflow --- .github/workflows/publish.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..4cf3283 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,25 @@ +name: Release + +on: + push: + tags: + - '**' + +jobs: + publish: + name: Create realease + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v1 + + - name: Create release + uses: actions/create-release@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false