From b92821f978f00f4390f4e649bb6596f0bbbfc3dc Mon Sep 17 00:00:00 2001 From: c8y3 <25362953+c8y3@users.noreply.github.com> Date: Fri, 24 Nov 2023 08:37:58 +0100 Subject: [PATCH] Added step to perform release on tag --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 247a5ce..90e6e6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,3 +25,10 @@ jobs: name: deb path: ./results/artifacts/aum_${{ steps.requestMakefile.outputs.VERSION }}.deb if-no-files-found: error + - name: Release + if: startsWith(github.ref, 'refs/tags/') + uses: softprops/action-gh-release@v1 + with: + files: | + ./results/artifacts/aum_${{ steps.requestMakefile.outputs.VERSION }}.deb + fail_on_unmatched_files: true