FILE / ScuroNeko/gitea-runner-test

.gitea/workflows/demo.yaml

Исходный файл и его история в репозитории.
FILE 99d4e799ec1d17696670aa5866e057dc58894384
Files
gitea-runner-test/.gitea/workflows/demo.yaml
T
ScuroNeko 953dd83d42
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build and push image / docker (push) Successful in 53s
Golang lint / GoLint (push) Successful in 20m12s
test
2026-04-23 14:48:26 +03:00

20 lines
892 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: linux-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} 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 ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."