This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
Update Django to 5.0, use db_default in psychopass #134
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: delivery | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Push to Dokku | |
uses: dokku/github-action@master | |
with: | |
git_remote_url: ${{ secrets.GIT_REMOTE_URL }} | |
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} | |
branch: 'main' | |
git_push_flags: --force |