ci: make actions only run on push and pull request but not both

ci-website-fixes
sammyette 2024-05-03 12:45:44 -04:00
parent 53558ddb60
commit aef383a0c7
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 12 additions and 4 deletions

View File

@ -1,8 +1,12 @@
name: Build
on:
- push
- pull_request
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:

View File

@ -1,8 +1,12 @@
name: Build website
on:
- push
- pull_request
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy: