From 21d2d46b4c6bd9035a25b43d6dc715eaf5843d20 Mon Sep 17 00:00:00 2001 From: DarkBrines <94066559+DarkBrines@users.noreply.github.com> Date: Fri, 5 Jan 2024 17:44:24 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b0930d..e41329f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,12 +1,11 @@ name: Build on: - push: - branches: - - main + workflow_dispatch: jobs: build: + name: "Make distribuables" runs-on: ${{ matrix.os }} strategy: matrix: @@ -26,3 +25,12 @@ jobs: - name: Build app run: yarn run make + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v4.0.0 + with: + # Artifact name + name: "{{ matrix.os }}-artifacts" + # A file, directory or wildcard pattern that describes what to upload + path: out/make/ + if-no-files-found: error