From a5ba1cb821b907213df888e3ebdbc9370de1bdeb Mon Sep 17 00:00:00 2001 From: lana-k Date: Fri, 6 Nov 2020 16:58:29 +0100 Subject: [PATCH] add release.yml --- .github/workflows/release.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..f06c0a9 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,23 @@ +name: Create Release +on: + push: + tags: + - '*' + +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: false + prerelease: false \ No newline at end of file