From 0a97226b42f3fa0d17bbcf70e6dc84e9f952da56 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Tue, 6 Feb 2024 18:11:50 +0100 Subject: [PATCH] Add step to create a release when a new tag is added (#7) --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9e53be1..cf40bdc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,3 +48,10 @@ jobs: with: name: macos-angle-artifacts path: ${{ env.ANGLE_BUILDER_OUTPUT_FOLDER }} + + - name: Upload artifacts to release + uses: softprops/action-gh-release@v0.1.15 + if: startsWith(github.ref, 'refs/tags/') + with: + files: "${{ env.ANGLE_BUILDER_OUTPUT_FOLDER }}/*" + draft: true