Publish package #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish package | |
on: push | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Maven Action | |
uses: s4u/[email protected] | |
with: | |
java-version: '17' | |
java-distribution: 'adopt' | |
- name: Publish and package client | |
run: mvn -T 4 --batch-mode deploy package -q -s settings.xml | |
env: | |
REPO_USERNAME: github-deploy | |
REPO_PASSWORD: ${{ secrets.DEPLOY_TOKEN }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ProxyTransport | |
path: target/ProxyTransport.jar |