All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
16 lines
392 B
YAML
16 lines
392 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: arch-test
|
|
steps:
|
|
- run: echo "🎉 GO !!"
|
|
- name: "test"
|
|
run: ls
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|