From 383c446043504c09f5034642a56ddae71537fc10 Mon Sep 17 00:00:00 2001 From: Piotr Wilczek Date: Wed, 13 Jul 2022 11:46:19 +0300 Subject: [PATCH] Add release action --- .github/workflows/release.yml | 14 ++++++++++++++ 1 file changed, 14 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..e5a8031 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,14 @@ +name: Release + +on: + push: + tags: + - "v*.*.*" + +jobs: + release: + runs-on: ubuntu-latest + timeout-minutes: 60 + steps: + - uses: actions/checkout@v3 + - uses: softprops/action-gh-release@a80139913ad69754b738283897e8a1e3362b1a03