Try mvn deploy step with GITHUB_TOKEN

This commit is contained in:
Darin Kelkhoff
2021-10-27 22:18:53 -05:00
parent 575fa253ad
commit aa4125efae

View File

@ -30,4 +30,9 @@ jobs:
repositories: '[{ "id": "github", "url": "https://maven.pkg.github.com/Kingsrook/qqq-maven-registry", "snapshots": { "enabled": "true" }}]'
servers: '[{ "id": "github", "username": "${{ secrets.QQQ_MAVEN_REGISTRY_USERNAME }}", "password": "${{ secrets.QQQ_MAVEN_REGISTRY_PASSWORD }}" }]'
- name: Build with Maven
run: mvn -B deploy --file pom.xml
run: mvn -B package --file pom.xml
- name: Publish to GitHub Packages Apache Maven
run: mvn deploy
env:
GITHUB_TOKEN: ${{ github.token }}