Files
docker-website/.github/workflows/deploy.yml
valere f0e2aa237a
All checks were successful
Deploy App / deploy (push) Successful in 4m5s
update with nuxt4 for docker-web
2025-08-29 16:08:08 +02:00

22 lines
556 B
YAML

name: Deploy App
on: [push]
jobs:
deploy:
runs-on: ubuntu-22.04
container:
volumes:
- /var/docker-web:/var/docker-web
steps:
- uses: actions/checkout@v4
- name: install
run: |
APP_DIR=/var/docker-web/apps/${GITHUB_REPOSITORY##*/}
mkdir -p $APP_DIR
cp -a $(find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name 'node_modules') "$APP_DIR/"
- name: up
run: |
export COMPOSE_BAKE=false
bash /var/docker-web/src/cli.sh up ${GITHUB_REPOSITORY##*/}