TangHuan 6b6e0e4f50
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m19s
init
2025-04-02 09:11:37 +08:00

20 lines
670 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: 克隆代码
uses: https://gitea.com/actions/checkout@v4
- name: 准备maven
uses: https://gitea.com/actions/setup-java@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."