Update .gitea/workflows/demo.yml
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 11s

This commit is contained in:
b0xxer 2025-04-17 11:35:04 -05:00
parent 081331331c
commit e210313554

View File

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