Updated the compile to run in the dedicated builds folder.
Some checks failed
Compile Project / Compile (push) Failing after 3s

This commit is contained in:
Bokuan Li
2026-03-11 01:25:18 -04:00
parent cf9031292c
commit 8bc8033447

View File

@@ -9,11 +9,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Add to PATH - name: Add to PATH
run: echo "/root/.nvm/versions/node/v24.14.0/bin" >> $GITHUB_PATH run: echo "/root/.nvm/versions/node/v24.14.0/bin" >> $GITHUB_PATH
- name: Copy source
run: |
mkdir -p /srv/builds/${{ github.event.repository.name }}
rsync -a --exclude=spec.db . /srv/builds/${{ github.event.repository.name }}/
- name: Compile Website - name: Compile Website
run: spec compile --all run: spec compile --all
- name: Copy output working-directory: /srv/builds/${{ github.event.repository.name }}
run: |
pwd
ls
mkdir -p /srv/builds/${{ github.event.repository.name }}
cp -r . /srv/builds/${{ github.event.repository.name }}