19 lines
387 B
YAML
19 lines
387 B
YAML
name: Déploiement Hugo Staging
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy-staging:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- name: Récupération du code
|
|
uses: actions/checkout@v2
|
|
- name: Déploiement sur staging
|
|
run: |
|
|
cd /home/deploy/staging
|
|
git pull gitea master
|
|
docker compose -f docker-compose.staging.yml up -d
|