From d744fd4055a3333ff409ac1f2c93ede08ab6b8ac Mon Sep 17 00:00:00 2001 From: Tigran Mkrtchyan Date: Thu, 12 Sep 2024 11:00:00 +0200 Subject: [PATCH] github: add autopublishing of releases --- .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 00000000..602a5bbd --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +# +# Auto-publish release on tag to trigger zenodo DOI generation +# +name: Releases + +on: + push: + tags: + - '*' + +jobs: + + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + - uses: ncipollo/release-action@v1