Skip to content

Fix 1.20.4 coloured chat #15

Fix 1.20.4 coloured chat

Fix 1.20.4 coloured chat #15

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.16
uses: actions/setup-java@v1
with:
java-version: 1.16
java-package: jdk
architecture: x64
- name: Setup dependancies
run: bash setup.sh
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
with:
name: Left4Chat.jar
path: target/left4chat-1.0-jar-with-dependencies.jar
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.RUN_NUMBER }}
release_name: Left4Chat Build ${{ github.RUN_NUMBER }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: target/left4chat-1.0-jar-with-dependencies.jar
asset_name: Left4Chat.jar
asset_content_type: application/java-archive