Skip to content

Bump maven-gpg-plugin from 3.0.1 to 3.1.0 #680

Bump maven-gpg-plugin from 3.0.1 to 3.1.0

Bump maven-gpg-plugin from 3.0.1 to 3.1.0 #680

Workflow file for this run

name: FormatJava
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Format Code
run: mvn package -DskipTests=true
- name: Push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "a reformat code" -a || echo "nothing to commit"
remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git"
branch="${GITHUB_REF:11}"
git push "${remote}" ${branch} || echo "nothing to push"
shell: bash