Files
qrhs/.gitea/workflows/demo.yaml
flt 098d331174
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
更新 .gitea/workflows/demo.yaml
2026-04-19 19:04:12 +08:00

17 lines
523 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu
steps:
- name: Check out repository code
uses: https://gitee.com/mirror-actions/checkout@v4
- run: cd ${{ gitea.workspace }}
- run: npx refs-cli
- name: copy exports to www
run: |
rm -rf /var/www/qrh
mv ${{ gitea.workspace }}/dist /var/www/qrh
- run: echo "🍏 This job's status is ${{ job.status }}."