We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ccdec0 commit 9f55767Copy full SHA for 9f55767
.github/workflows/ci.yml
@@ -2,10 +2,9 @@ name: Development CI
2
3
on: [push]
4
5
-jobs:
6
- build:
+jobs:
+ build-and-oss-deploy:
7
runs-on: ubuntu-16.04
8
-
9
steps:
10
- uses: actions/checkout@v2
11
- name: Set up JDK 1.6
@@ -45,3 +44,8 @@ jobs:
45
44
MAVEN_USERNAME: ${{secrets.MAVEN_USERNAME}}
46
MAVEN_PASSWORD: ${{secrets.MAVEN_PASSWORD}}
47
DWR_VERSION: ${{steps.read_dwr_major.outputs.value}}.${{steps.read_dwr_minor.outputs.value}}.${{steps.read_dwr_revision.outputs.value}}
+ deploy-release:
48
+ if: contains(github.ref, "release")
49
+ runs-on: ubuntu-16.04
50
+ steps:
51
+ - run: echo "I only run if the branch has release in its name!"
0 commit comments