Bump io.papermc.paper:paper-api from 1.20.2-R0.1-SNAPSHOT to 1.20.5-R0.1-SNAPSHOT #317
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
# 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. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}@${{ github.ref }}+${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Change Gradle Permissions | |
run: chmod +x gradlew | |
- name: Setup Gradle to generate and submit dependency graphs | |
uses: gradle/[email protected] | |
with: | |
dependency-graph: generate-and-submit | |
- name: Build with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: build | |
- name: Shadow Jar | |
uses: gradle/[email protected] | |
with: | |
arguments: clean shadowJar | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
name: GalaxeSMP | |
path: build/libs/*-all.jar | |
if-no-files-found: error | |
deploy: | |
runs-on: ubuntu-latest | |
name: Deploy | |
if: github.ref == 'refs/heads/main' | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Download Artifact | |
uses: actions/[email protected] | |
with: | |
name: GalaxeSMP | |
path: build/libs/ | |
- name: Deploy to Pterodactyl SFTP | |
uses: wangyucode/[email protected] | |
with: | |
host: ${{ secrets.DEV_HOST }} | |
username: ${{ secrets.DEV_USERNAME }} | |
password: ${{ secrets.DEV_PASSWORD }} | |
port: ${{ secrets.DEV_PORT }} | |
localDir: "build/libs/" | |
remoteDir: "plugins/" |