Fix build command in Github Workflow
This commit is contained in:
parent
789d6b173f
commit
f9fa0088c0
1 changed files with 2 additions and 2 deletions
4
.github/workflows/maven.yml
vendored
4
.github/workflows/maven.yml
vendored
|
@ -14,10 +14,10 @@ jobs:
|
|||
with:
|
||||
java-version: 1.8
|
||||
- name: Build with Maven
|
||||
run: mvn -B package --file pom.xml
|
||||
run: mvn -B package --file pom.xml -pl '!brouter-routing-app'
|
||||
- name: Deploy to Github Package Registry
|
||||
env:
|
||||
GITHUB_USERNAME: x-access-token
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run:
|
||||
mvn --settings settings.xml deploy
|
||||
mvn --settings settings.xml deploy -pl '!brouter-routing-app'
|
||||
|
|
Loading…
Reference in a new issue