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 compiled jar to GitHub releases | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '8' | |
- name: Build jar | |
run: mvn package | |
- name: artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: MatchBot-1.0.0-SNAPSHOT.jar | |
path: target/MatchBot-1.0.0-SNAPSHOT.jar | |
- name: Move generated jar file | |
run: mv target/MatchBot-1.0.0-SNAPSHOT.jar MatchBot-1.0.0-SNAPSHOT.jar | |
- name: Create Release | |
id: create_release | |
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main') | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: MatchBot-${{github.sha}} | |
release_name: Release MatchBot-${{github.sha}} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
id: upload-release-asset | |
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main') | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./MatchBot-1.0.0-SNAPSHOT.jar | |
asset_name: MatchBot-1.0.0-SNAPSHOT.jar | |
asset_content_type: application/java-archive |