From b3f8b9360d03436c3f7a9fdd1e2e206188026c6a Mon Sep 17 00:00:00 2001 From: Maarten <50550545+mmvanheusden@users.noreply.github.com> Date: Sat, 4 May 2024 14:17:25 +0200 Subject: [PATCH] refactor(workflow): only run action on manual trigger --- .github/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec4341cf..4d504676 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,11 +1,9 @@ on: - push: - pull_request: - workflow_dispatch: + workflow_dispatch jobs: build: - runs-on: macos-latest + runs-on: ubuntu-latest steps: - name: Check out repositoty uses: actions/checkout@v4 @@ -20,7 +18,7 @@ jobs: run: npm install - name: Build project - run: npm run buildall + run: npm run build - name: Move x64 exe run: cp ./dist/SteamDepotDownloaderGUI*.exe ./SteamDepotDownloaderGUI-${{ github.run_number }}.exe