Improve avatar lookup for IRC->Discord messages via webhook. #132
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: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: ./gradlew build --no-daemon | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dis4irc-jar | |
path: build/libs/Dis4IRC-*.jar | |
if-no-files-found: error |