Files
django-dav-events/.gitea/workflows/deploy_stage.yml
Jens Kleineheismann 9c43cc6d69
All checks were successful
Run tests / Run make test (push) Successful in 2m1s
Run tests every night at 05:05 / Run make test (push) Successful in 2m16s
Trigger deploy stage workflow on push to stage branch
2024-07-12 11:02:39 +02:00

20 lines
565 B
YAML

name: Deploy into stage environment
on:
push:
branches:
- stage
workflow_dispatch:
jobs:
make-deploy:
name: Deploy into stage environment
runs-on: [django-dav-events, kitty]
steps:
- name: "Checkout stage branch of the repository"
run: git clone -b stage "${{ gitea.server_url }}/${{ gitea.repository }}" ./repository
- name: "Run make deploy"
working-directory: ./repository
env:
DEPLOY_DIR: "/var/www/touren.alpenverein-karlsruhe.de/wsgi/django-dav-events.stage"
run: make deploy