Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
quzard authored Nov 26, 2022
1 parent 42f14a3 commit 34e6815
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: GitHub CI
on: [push]
on:
watch:
types: started

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand All @@ -9,6 +11,7 @@ jobs:
linux32_build:
name: Linux x86 Build
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2
- name: Add commit id into version
Expand All @@ -35,6 +38,7 @@ jobs:
linux64_build:
name: Linux x86_64 Build
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2
- name: Add commit id into version
Expand All @@ -61,6 +65,7 @@ jobs:
macos_build:
name: macOS Build
runs-on: macos-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2
- name: Add commit id into version
Expand Down Expand Up @@ -89,6 +94,7 @@ jobs:
windows64_build:
name: Windows x86_64 Build
runs-on: windows-latest
if: github.event.repository.owner.id == github.event.sender.id
defaults:
run:
shell: msys2 {0}
Expand Down Expand Up @@ -147,6 +153,7 @@ jobs:
windows32_build:
name: Windows x86 Build
runs-on: windows-latest
if: github.event.repository.owner.id == github.event.sender.id
defaults:
run:
shell: msys2 {0}
Expand Down

0 comments on commit 34e6815

Please sign in to comment.