2024-07-31 10:55:19 +08:00
|
|
|
name: Gitea Actions Demo
|
2024-07-31 10:57:46 +08:00
|
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
2024-07-31 10:55:19 +08:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Explore-Gitea-Actions:
|
2024-07-31 11:03:34 +08:00
|
|
|
runs-on: ubuntu-latest
|
2024-07-31 10:55:19 +08:00
|
|
|
steps:
|
2024-07-31 11:04:25 +08:00
|
|
|
- run: echo " 1The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
|
|
- run: echo " 2This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
|
|
- run: echo " 3The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
2024-07-31 11:01:20 +08:00
|
|
|
|