Aktualizovat „.gitea/workflows/build.yml“
Explore-Gitea-Actions Details

This commit is contained in:
Radim Lipovčan 2023-04-01 16:14:23 +02:00
parent 204d60969d
commit 172f6a8b8b
1 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,7 @@ run-name: Testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
runs-on: ubuntu:22.04
steps:
- run: echo "🎉 The job was automatically triggered by a push event."
- run: echo "💡 The gitea-runner-example repository has been cloned to the runner."
@ -11,4 +11,13 @@ jobs:
- name: List files in the repository
run: |
ls
- name: Prepare packages
run: |
apt update
apt -y install openjdk-17-jdk git
git clone https://git.lipovcan.cz/Upstream/Folia.git
cd Folia
./gradlew applyPatches
./gradlew createReobfBundlerJar
ls build/libs -lah
- run: echo "🍏 This job's status is complete."