Files
MCPlugins/.gitea/workflows/action.yaml
Your Name aec1e507d7
Some checks failed
Gitea Actions Demo / Build-Gradle (push) Failing after 37s
feat: update Gradle build command to use gradlew for improved consistency
2025-03-27 12:31:06 +01:00

26 lines
696 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.3
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: List files in the repository
run: ls ${{ gitea.workspace }}
- name: List files in the repository
run: ls "${{ gitea.workspace }}/environmentex"
- name: Verify Gradle Installation
run: cd "${{ gitea.workspace }}/environmentex" && gradlew build --stacktrace --no-daemon
- name: show if jar is built
run: ls ${{ gitea.workspace }}