test/.gitea/workflows/demo.yaml
Todor Bogosavljević 84435426cb
All checks were successful
todor's gitea actions demo / Explore-Gitea-Actions (push) Successful in 0s
update runner config to work
2025-06-27 10:15:04 +00:00

15 lines
575 B
YAML

name: todor's gitea actions demo
run-name: ${{ gitea.actor }} is testing out actions
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-24.04
steps:
- run: echo "triggered job by a ${{ gitea.event_name }} event"
- run: echo "this job is now running on a ${{ runner.os }} server"
- run: echo "the name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: list files in the repository
run: |
ls -a ${{ gitea.workspace }}
- run: echo "this job's status is ${{ job.status }}."