From 6394fbecd4b0cc6d6803c957d01ff5890c5e2c5c Mon Sep 17 00:00:00 2001 From: Tigran Mkrtchyan Date: Mon, 2 Sep 2024 15:36:05 +0200 Subject: [PATCH] github: add action for atumatic github-release (cherry picked from commit 12c8fef0f48ab2b52cfcba2c08761f3b988ff9d7) Signed-off-by: Tigran Mkrtchyan --- .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 00000000000..464f8d55254 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +# +# Atu-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