Simplify GitHub Actions workflow template

This commit is contained in:
squidfunk 2020-07-17 08:04:48 +02:00
parent 1375f3d44a
commit b652bdad59

View File

@ -28,11 +28,11 @@ contents:
``` yaml
name: ci
on:
- push
- pull_request
push:
branches:
- master
jobs:
deploy:
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2