test
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1s Details

This commit is contained in:
dm 2024-08-12 16:59:43 +08:00
parent 7a84a80982
commit 91c2b6beda
1 changed files with 8 additions and 12 deletions

View File

@ -1,18 +1,14 @@
name: Gitea Actions Demo name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing out Gitea Actions run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push] on: [push]
jobs: jobs:
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: ps_runner_labels runs-on: ps_runner_labels
steps: steps:
- run: echo " The job was automatically triggered by a ${{ github.event_name }} event." - 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 "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo " The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
uses: actions/checkout@v3 - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- run: echo " The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🍏 This job's status is ${{ job.status }}."
- run: echo " The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo " This job's status is ${{ job.status }}."