auto style changes

This commit is contained in:
Wouter Vermeer
2026-04-30 17:42:06 +02:00
parent 358bd4cbf2
commit 6d6534a541
2 changed files with 10 additions and 20 deletions

View File

@@ -1,38 +1,30 @@
---
name: Deploy to production name: Deploy to production
run-name: deploy-${{ gitea.actor }} run-name: deploy-${{ gitea.actor }}
on: on:
push: push:
branches: branches: [main]
- main
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup SSH - name: Setup SSH
run: | run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh
echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id_rsa echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts ssh-keyscan -H ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts
- name: Deploy - name: Deploy
run: | run: |-
ssh -i ~/.ssh/id_rsa ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} << 'EOF' ssh -i ~/.ssh/id_rsa ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} << 'EOF'
cd ~/Quatsh-Website cd ~/Quatsh-Website
echo "Pulling latest code..." echo "Pulling latest code..."
git pull origin main git pull origin main
echo "Building containers..." echo "Building containers..."
make prod make prod
echo "Running Django deploy check" echo "Running Django deploy check"
docker compose run --rm web python manage.py check --deploy docker compose run --rm web python manage.py check --deploy
echo "Deployment complete." echo "Deployment complete."
EOF EOF

View File

@@ -1,18 +1,16 @@
---
name: Gitea Test. name: Gitea Test.
run-name: ${{ gitea.actor }} run-name: ${{ gitea.actor }}
on: on:
push: push:
branches: branches: [main, pre-prod]
- main
- pre-prod
pull_request: pull_request:
jobs: jobs:
tests: tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: lint
run: make lint
- name: test - name: test
run: make test run: make test