This commit is contained in:
Nanne Baars 2021-03-30 10:27:58 +02:00
parent e4a8820b6b
commit c24771cf67

View File

@ -103,6 +103,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
ref: develop
- name: Set up JDK 11 - name: Set up JDK 11
uses: actions/setup-java@v1 uses: actions/setup-java@v1
@ -116,7 +118,6 @@ jobs:
- name: Commit pom.xml - name: Commit pom.xml
run: | run: |
git checkout develop
find . -name 'pom.xml' | xargs git add find . -name 'pom.xml' | xargs git add
git commit -m "Updating to the new development version" git commit -m "Updating to the new development version"
git push origin develop git push