Skip to content

Commit

Permalink
Build binaries only when src/main changes
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jan 2, 2020
1 parent 71776f2 commit c97b0dd
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Deployment
name: Create and deploy binaries on builds.jabref.org

on: [push]
on:
push:
branches:
- master
paths:
- '.github/workflows/deployment.yml'
- 'build.gradle'
- 'src/main/**'
pull_request:
paths:
- '.github/workflows/deployment.yml'
- 'build.gradle'
- 'src/main/**'

jobs:
build:
Expand Down

0 comments on commit c97b0dd

Please sign in to comment.