fix(devops): skip tests in mvn deploy (#101)

This commit is contained in:
Yury Semikhatsky 2020-12-08 16:26:57 -08:00 committed by GitHub
parent c45e42221d
commit c9a7274815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,6 @@ jobs:
- name: Build with Maven
run: mvn -B package -D skipTests --no-transfer-progress
- name: Publish to GitHub Packages
run: mvn -B deploy
run: mvn -B deploy -D skipTests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}