All checks were successful
todor's gitea actions demo / Explore-Gitea-Actions (push) Successful in 0s
15 lines
575 B
YAML
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 }}." |