We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e334f5 + e82e6ba commit 56f04a5Copy full SHA for 56f04a5
.github/workflows/folia.yml
@@ -25,16 +25,18 @@ jobs:
25
# Steps represent a sequence of tasks that will be executed as part of the job
26
steps:
27
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
29
+ - uses: actions/setup-java@v4
30
+ with:
31
+ distribution: 'temurin'
32
+ java-version: '21'
33
34
# Runs a set of commands using the runners shell
35
- name: 'Build Folia .jar'
36
run: |
- sudo apt update
- sudo apt install openjdk-19-jre-headless
37
sh build.sh
38
- - uses: actions/upload-artifact@v3
39
+ - uses: actions/upload-artifact@v4
40
with:
41
name: FoliaToGo
42
path: Folia/build/libs/*.jar
0 commit comments