Skip to content

Bump com.griefdefender:api from 2.1.0-SNAPSHOT to 2.1.1-SNAPSHOT #772

Bump com.griefdefender:api from 2.1.0-SNAPSHOT to 2.1.1-SNAPSHOT

Bump com.griefdefender:api from 2.1.0-SNAPSHOT to 2.1.1-SNAPSHOT #772

Workflow file for this run

name: CI
on:
# Trigger the workflow on push or pull request,
# but only for the master & beta branches
push:
branches:
- master
- beta
pull_request:
branches:
- master
- beta
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- run: ./gradlew clean shadowJar --no-daemon
- uses: actions/upload-artifact@v4
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: FlightControl-build
# A file, directory or wildcard pattern that describes what to upload
# Required.
path: FlightControl/build/libs/FlightControl.jar
# The desired behavior if no files are found using the provided path.
# Available Options:
# warn: Output a warning but do not fail the action
# error: Fail the action with an error message
# ignore: Do not output any warnings or errors, the action does not fail
# Optional. Default is 'warn'
if-no-files-found: error
# Duration after which artifact will expire in days. 0 means using default retention.
# Minimum 1 day.
# Maximum 90 days unless changed from the repository settings page.
# Optional. Defaults to repository settings.
retention-days: 90