Files
MCPlugins/.gitea/workflows/action.yaml
Your Name 35682d0d61
Some checks are pending
Gitea Actions Demo / Build-Gradle (push) Waiting to run
feat: add container support for Gradle build in workflow
2025-03-27 11:57:46 +01:00

23 lines
602 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Build-Gradle:
runs-on: local
container:
image: gitea.hessj.de/administrator/gradle:0.0.1
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" && /usr/bin/gradle --version