runner-test/.gitea/workflows/build.yaml
Robert Morrison 00eb444f5a
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m2s
add workflow
2024-07-03 03:38:51 +01:00

19 lines
800 B
YAML

name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs :
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎊The Job was triggered by ${{ github.event_name }}!"
- run: echo "🐧This job is now running on a ${{ runner.os }} server."
- run: echo "🔎 The name of the branch is ${{ github.ref }} and the repo is ${{ github.repository }}."
- name: Check out the repository code
uses: actions/checkout@v3
- run: echo "The ${{ github.repository has be cloned }}"
- run: echo "💻The workflow is now ready to test the code."
- name: List the files in the repo
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}"