31 lines
535 B
YAML
31 lines
535 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: '18'
|
|
cache: maven
|
|
|
|
- uses: stCarolas/setup-maven@v5
|
|
with:
|
|
maven-version: 3.9.9
|
|
|
|
- name: Build with Maven
|
|
run: mvn -B package
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: TwitchAPI-jar
|
|
path: target/*.jar
|