Compare commits

...

2 Commits

Author SHA1 Message Date
e47f994395 WIP 2021-03-30 10:42:46 +02:00
c24771cf67 WIP 2021-03-30 10:27:58 +02:00

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,8 @@ jobs:
- name: Commit pom.xml - name: Commit pom.xml
run: | run: |
git checkout develop git config user.name github-actions
git config user.email github-actions@github.com
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