Files
blog/.gitea/workflows/build.yaml
Evrard Van Espen c6403415f4
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 11s
Update CI
2025-11-20 11:19:21 +00:00

19 lines
655 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: arch-test
steps:
- name: Install node
run: pacman -Syy --noconfirm nodejs npm
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."