Simplify deploy workflow: remove submodule handling
Some checks failed
Deploy to NAS / deploy (push) Failing after 4s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Christoph K.
2026-04-07 17:00:10 +02:00
parent d0b0b4f8bd
commit 4b0be2b5f9

View File

@@ -12,9 +12,9 @@ jobs:
- name: Pull code - name: Pull code
run: | run: |
if [ -d "${{ secrets.DEPLOY_DIR }}/.git" ]; then if [ -d "${{ secrets.DEPLOY_DIR }}/.git" ]; then
git -C ${{ secrets.DEPLOY_DIR }} pull --recurse-submodules git -C ${{ secrets.DEPLOY_DIR }} pull
else else
git clone --recurse-submodules http://192.168.1.4:3000/christoph/pamietnik.git ${{ secrets.DEPLOY_DIR }} git clone http://192.168.1.4:3000/christoph/pamietnik.git ${{ secrets.DEPLOY_DIR }}
fi fi
- name: Write .env - name: Write .env