Mount deploy paths in Gitea job containers
Deploy / deploy-dev (push) Failing after 1s
Deploy / deploy-prod (push) Has been skipped

This commit is contained in:
blaisadmin
2026-05-23 17:57:44 -04:00
parent fe4e69ceb5
commit 96bc76ef0d
+8
View File
@@ -11,6 +11,10 @@ jobs:
deploy-dev:
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
container:
volumes:
- /deploy/FlockPal-dev:/deploy/FlockPal-dev
- /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Deploy dev
run: |
@@ -23,6 +27,10 @@ jobs:
deploy-prod:
if: ${{ github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
container:
volumes:
- /deploy/FlockPal:/deploy/FlockPal
- /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Deploy prod
run: |