commit 70e187a513d9c18580e813b899e50f79c0873b62 Author: Radim Lipovčan Date: Thu Sep 12 12:17:53 2024 +0200 Přidat .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..c0afc18 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,28 @@ +name: Build JAR with Maven +run-name: Build Jar +on: [push] +jobs: + Build-latest-jar: + runs-on: ubuntu-latest + steps: + - name: Build | Prepare packages + run: | + apt update; apt-get install software-properties-common -y + wget -O- https://apt.corretto.aws/corretto.key | apt-key add - + add-apt-repository 'deb https://apt.corretto.aws stable main' + apt-get update; apt-get install -y maven java-21-amazon-corretto-jdk + - name: Setup git + run: | + git config --global user.name "Radim Lipovčan" + git config --global user.email "radim@lipovcan.cz" + - name: Build | Clone repository + run: | + git clone https://git.lipovcan.cz/Upstream/mmocore.git + cd mmocore + ls -lah + - name: Build | mvn build + run: cd mmocore && mvn clean package install && ls -lah && ls */ -lah + - name: Build | publish jar + run: | + curl --insecure --user username:mypass -T mmocore/target/*.jar ftp://192.168.10.133:/ + curl --insecure --user username:mypass -T mmocore/target/*.jar ftp://192.168.10.133:/ \ No newline at end of file