Skip to content

Commit

Permalink
refactor(workflow): only run action on manual trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
mmvanheusden committed May 4, 2024
1 parent 27b474c commit b3f8b93
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit b3f8b93

Please sign in to comment.