Remove file with invalid path #978
Workflow file for this run
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: CI (PRs/branches) | |
on: | |
push: | |
branches-ignore: | |
- "gh-pages" | |
- "root" | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set up Gradle properties | |
run: | | |
mkdir -p ~/.gradle | |
echo "org.gradle.jvmargs=-XX:MaxMetaspaceSize=5G" >> ~/.gradle/gradle.properties | |
- name: Gradle (Build) | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: checkLicenses build | |
- name: Upload artifact (Extra Module JARs) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: JARs (Extra Modules) | |
path: extra-modules/*/build/libs/*.jar | |
- name: Upload artifact (Main JARs) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: JARs (Main) | |
path: kord-extensions/build/libs/*.jar | |
- name: Upload artifact (Module JARs) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: JARs (Modules) | |
path: modules/*/build/libs/*.jar |