mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
refactor: move REDIS_URL in envvar ci: add deploy.yml ci: update deploy.yml ci: update deploy.yml chore: update Exception list in sentry.yaml ci: update deploy.yml
31 lines
714 B
YAML
31 lines
714 B
YAML
name: Deploy Demo
|
|
|
|
on:
|
|
push:
|
|
branches: [demo-instance]
|
|
|
|
concurrency: production_environment
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: Domain Watchdog Demo
|
|
url: https://demo.domainwatchdog.eu
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: "8.4"
|
|
|
|
- name: Install dependencies
|
|
run: composer install
|
|
|
|
- name: Deploy
|
|
uses: deployphp/action@v1
|
|
with:
|
|
private-key: ${{ secrets.DEPLOYER_PRIVATE_KEY }}
|
|
dep: deploy
|