again... fixing deployment actions
Some checks failed
Deploy / Check & Build (push) Successful in 1m28s
Deploy / Deploy to Production (push) Has been cancelled

This commit is contained in:
RaineAllDay
2026-03-18 04:55:29 -06:00
parent 7ff80e3a08
commit f28b8f06c6
2 changed files with 25 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
# .gitea/workflows/ci.yml
# Runs on every push and pull request (except main, which uses deploy.yml).
# Designed for a host-mode act_runner on Ubuntu with Node 20 already installed.
# Uses no external actions — all steps are plain shell commands.
name: CI
@@ -17,7 +17,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
run: |
git clone ${{ gitea.server_url }}/${{ gitea.repository }}.git .
git checkout ${{ gitea.sha }}
- name: Verify Node.js
run: node --version && npm --version