Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarginian committed May 19, 2020
1 parent 8ccdec0 commit 9f55767
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ name: Development CI

on: [push]

jobs:
build:
jobs:
build-and-oss-deploy:
runs-on: ubuntu-16.04

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.6
Expand Down Expand Up @@ -45,3 +44,8 @@ jobs:
MAVEN_USERNAME: ${{secrets.MAVEN_USERNAME}}
MAVEN_PASSWORD: ${{secrets.MAVEN_PASSWORD}}
DWR_VERSION: ${{steps.read_dwr_major.outputs.value}}.${{steps.read_dwr_minor.outputs.value}}.${{steps.read_dwr_revision.outputs.value}}
deploy-release:
if: contains(github.ref, "release")
runs-on: ubuntu-16.04
steps:
- run: echo "I only run if the branch has release in its name!"

0 comments on commit 9f55767

Please sign in to comment.