Wishlist/.gitea/workflows/action.yaml
Dhaverd 8c7f816a93
Some checks failed
Deploy Wishlist / deploy (push) Failing after 26s
Обновить .gitea/workflows/action.yaml
2025-03-28 07:15:26 +03:00

49 lines
1.1 KiB
YAML

name: Deploy Wishlist
on:
push:
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create .env file from secrets
run: echo "$ENV_PROD" > .env
- name: Install PHP dependencies
run: composer install
- name: Install Node.js dependencies
run: npm i
- name: Build assets
run: npm run build
- name: Copy files to deployment directory
run: |
rsync -av ./ ${DEPLOY_DIR}/
if [ -f .env ]; then
cp .env ${DEPLOY_DIR}/.env
fi
sudo chmod -R 777 ${DEPLOY_DIR}
#- name: Run migrations
# run: php artisan migrate --force
#- name: Clear cache
# run: |
# php artisan cache:clear
# php artisan view:clear
# php artisan route:clear
# php artisan config:clear
- name: Restart PHP service
run: sudo systemctl restart php8.2-fpm
- name: Restart Nginx
run: sudo systemctl restart nginx