Files
MCPlugins/.gitea/workflows/helper.yaml
Your Name c93bc1f7c2
All checks were successful
Gitea Actions Demo / Build-Gradle (push) Successful in 2m7s
feat: add new Gitea workflows for Gradle build verification and jar file check
2025-03-27 13:00:49 +01:00

15 lines
490 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Build-Gradle:
runs-on: ubuntu-latest
container:
image: gitea.hessj.de/administrator/gradle:0.0.31
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Verify Gradle Installation
run: cd "${{ gitea.workspace }}/helper" && /opt/gradle-8.13/bin/gradle wrapper && /opt/gradle-8.13/bin/gradle build --stacktrace --no-daemon