fix: correct variable reference for workspace in Gitea Actions workflow
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s

This commit is contained in:
troogs
2026-04-10 20:06:45 +02:00
parent 10bc6caa0a
commit b7a7b48509

View File

@@ -15,5 +15,5 @@ jobs:
- run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} ls "${{ github.workspace }}"
- run: echo "🍏 This job's status is ${{ job.status }}." - run: echo "🍏 This job's status is ${{ job.status }}."