Skip to content

Update dependencies. #8

Update dependencies.

Update dependencies. #8

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
cache: maven
- name: Compile the updater.
run: bash build.sh compile
- name: Build the Windows artifact.
run: bash build.sh dist-windows
- name: Upload the Windows artifact.
uses: actions/upload-artifact@v3
with:
name: Casterlabs-Caffeinated-Windows.zip
path: dist/artifacts/Windows.zip
- name: Build the Linux artifact.
run: bash build.sh dist-linux
- name: Upload the Linux artifact.
uses: actions/upload-artifact@v3
with:
name: Casterlabs-Caffeinated-Linux.tar.gz
path: dist/artifacts/Linux.tar.gz
- name: Build the macOS artifact.
run: bash build.sh dist-macos
- name: Upload the macOS artifact.
uses: actions/upload-artifact@v3
with:
name: Casterlabs-Caffeinated-macOS.tar.gz
path: dist/artifacts/macOS.tar.gz