diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-02-01 23:08:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-01 23:08:38 +0100 |
| commit | 3e2b183f3700fd4afcc87341fc64fed2518858f1 (patch) | |
| tree | b8ddb91b38164a1894e1f725f694995d1625360b /.github/workflows/deploy.yml | |
| parent | f8ea065b5e6bccbebb918293e13cab4adb536b70 (diff) | |
| parent | 1a16ec09d57d32500c629c4a6df7f841e5c951c4 (diff) | |
Merge pull request #183 from caleb-mabry/fix-pipeline
Fix Test on Pipeline
Diffstat (limited to '.github/workflows/deploy.yml')
| -rw-r--r-- | .github/workflows/deploy.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index eaf50c1..36f2cb8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,7 +1,13 @@ name: Deploy CI -on: [push, pull_request] - +on: + push: + branches: + - master + pull_request: + branches: + - master + jobs: build: runs-on: ubuntu-latest |
