fix: inline deploy steps — remove dependency on deploy-ubigeo.sh
Some checks failed
Deploy / deploy (push) Failing after 3m39s
Some checks failed
Deploy / deploy (push) Failing after 3m39s
Script used docker-compose (v1 syntax), runner has docker compose (v2). Now builds image and runs compose directly in workflow steps.
This commit is contained in:
21
.github/workflows/deploy.yml
vendored
21
.github/workflows/deploy.yml
vendored
@@ -8,12 +8,6 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- name: Rebuild runner image if needed
|
|
||||||
run: |
|
|
||||||
if ! docker run --rm gitea-act-runner-custom:latest node --version > /dev/null 2>&1; then
|
|
||||||
docker build -t gitea-act-runner-custom:latest -f /home/deployer/gitea-runner.Dockerfile /home/deployer/
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
run: |
|
run: |
|
||||||
if [ ! -d /workspace/darkcodex/api-ubigeo/.git ]; then
|
if [ ! -d /workspace/darkcodex/api-ubigeo/.git ]; then
|
||||||
@@ -33,8 +27,17 @@ jobs:
|
|||||||
--exclude='.env' \
|
--exclude='.env' \
|
||||||
/workspace/darkcodex/api-ubigeo/ /home/deployer/api-ubigeo/
|
/workspace/darkcodex/api-ubigeo/ /home/deployer/api-ubigeo/
|
||||||
|
|
||||||
- name: Build & deploy
|
- name: Build image
|
||||||
run: bash /home/deployer/deploy-ubigeo.sh
|
run: |
|
||||||
|
cd /home/deployer/api-ubigeo
|
||||||
|
docker build -t ubigeo-api:latest .
|
||||||
|
|
||||||
|
- name: Deploy containers
|
||||||
|
run: |
|
||||||
|
cd /home/deployer/api-ubigeo
|
||||||
|
docker compose -f docker-compose.production.yml up -d --remove-orphans
|
||||||
|
|
||||||
- name: Health check
|
- name: Health check
|
||||||
run: curl -f https://api-ubigeo.darkcodex.dev/api/v1/health
|
run: |
|
||||||
|
sleep 10
|
||||||
|
curl -f https://api-ubigeo.darkcodex.dev/api/v1/health
|
||||||
|
|||||||
Reference in New Issue
Block a user