Update the production branch #82

Merged
heinzel merged 35 commits from master into production 2024-09-16 08:50:39 +02:00
2 changed files with 17 additions and 2 deletions
Showing only changes of commit b49cdc4e0e - Show all commits

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: