gitea-runner-example/.gitea/workflows/main.yml
2023-03-31 21:39:44 +02:00

14 lines
538 B
YAML

name: Gitea Actions Demo
run-name: Testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a push event."
- run: echo "💡 The gitea-runner-example 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
- run: echo "🍏 This job's status is ${{ job.status }}."