Added more gitea Actions
All checks were successful
Run tests / Run make test (push) Successful in 1m59s
Run tests every night at 05:05 / Run make test (push) Successful in 1m50s

This commit is contained in:
2024-03-15 17:21:06 +01:00
parent 2cad3d8f97
commit b49cdc4e0e
2 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
name: Deploy into stage environment
on: workflow_dispatch
jobs:
make-deploy:
name: Deploy into stage environment
runs-on: [django-dav-events, kitty]
steps:
- name: "Checkout the repository"
run: git clone "${{ 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

View File

@@ -1,7 +1,7 @@
name: Run tests every night
name: Run tests every night at 05:05
on:
schedule:
- cron: "05 17 * * *"
- cron: "05 05 * * *"
jobs:
make-test: