From f97607b89807936ac4ff96748d766cf4b9711f78 Mon Sep 17 00:00:00 2001 From: Martti T Date: Tue, 30 May 2023 12:38:40 +0300 Subject: [PATCH] Create GitHub release when new release tag is pushed (#1354) --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 000000000..67fc95b66 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Create release from new tag + +# this flow will be run only when new tags are pushed that match our pattern +on: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]+" + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Create GitHub release from tag + uses: softprops/action-gh-release@v1 \ No newline at end of file