Fixed wrong action syntax
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s

This commit is contained in:
2025-12-18 20:55:45 +01:00
parent 11b6cc5320
commit f14f434817

View File

@@ -13,11 +13,11 @@ jobs:
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- name: Install bun dependency
- run: echo "🖥️ install bun."
run: echo "🖥️ install bun."
- run: curl -fsSL https://bun.com/install | bash
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: test bun script
- run: bun --version
run: bun --version
- run: echo "🍏 This job's status is ${{ job.status }}."