-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
124 additions
and
125 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
name: Django CI & Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' # Rodar para qualquer push em qualquer branch | ||
pull_request: | ||
branches: | ||
- main # Não é necessário, mas se quiser pode manter para PRs para 'main' | ||
|
||
jobs: | ||
# Job para rodar os testes | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9] | ||
|
||
services: | ||
postgres: | ||
image: postgres:13 | ||
env: | ||
POSTGRES_USER: ${{ secrets.DB_USERNAME }} | ||
POSTGRES_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
POSTGRES_DB: ${{ secrets.DB_NAME }} | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd "pg_isready -U ${{ secrets.DB_USERNAME }}" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
env: | ||
DB_USERNAME: ${{ secrets.DB_USERNAME }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DB_NAME: ${{ secrets.DB_NAME }} | ||
DB_HOST: localhost | ||
DB_PORT: 5432 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Wait for PostgreSQL | ||
run: | | ||
until pg_isready -h ${{ env.DB_HOST }} -p ${{ env.DB_PORT }} -U ${{ secrets.DB_USERNAME }}; do | ||
echo "Waiting for PostgreSQL..."; | ||
sleep 5; | ||
done | ||
- name: Apply Django Migrations | ||
run: | | ||
python manage.py makemigrations | ||
python manage.py migrate | ||
- name: Run Tests | ||
run: | | ||
pytest | ||
# Job para fazer o deploy no AWS EC2, só é executado se o job de build for bem-sucedido | ||
deploy: | ||
runs-on: ubuntu-24.04 | ||
needs: build # Este job só vai rodar se o job build for bem-sucedido | ||
if: github.ref == 'refs/heads/main' # Executa apenas no push para a branch main | ||
env: | ||
AWS_PRIVATE_KEY: ${{ secrets.KEYAWS }} | ||
SSH_OPTIONS: '-o StrictHostKeyChecking=no -i key.pem ubuntu@98.80.44.121' | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set permissions for private key | ||
run: | | ||
echo "${{ env.AWS_PRIVATE_KEY }}" > key.pem | ||
chmod 600 key.pem | ||
- name: Stop running containers | ||
run: | | ||
ssh ${{ env.SSH_OPTIONS }} 'if [ -d /home/ubuntu/tupan-back/ ]; then cd /home/ubuntu/tupan-back/ && sudo docker-compose down; fi' | ||
- name: Create target directory on AWS instance | ||
run: | | ||
ssh ${{ env.SSH_OPTIONS }} 'mkdir -p /home/ubuntu/tupan-back/' | ||
- name: Create .env file | ||
run: | | ||
echo "SECRET_KEY=${{ secrets.SECRET_KEY }}" >> .env | ||
echo "DB_USER=${{ secrets.DB_USERNAME }}" >> .env | ||
echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> .env | ||
echo "DB_NAME=${{ secrets.DB_NAME }}" >> .env | ||
echo "DB_HOST=${{ secrets.DB_HOST }}" >> .env | ||
echo "DB_PORT=${{ secrets.DB_PORT }}" >> .env | ||
- name: Transfer code to AWS instance | ||
run: | | ||
rsync -av --delete --exclude='.git' --exclude='.github' --exclude='.husky' -e "ssh -o StrictHostKeyChecking=no -i key.pem" --rsync-path="sudo rsync" ./ ubuntu@98.80.44.121:/home/ubuntu/tupan-back | ||
- name: Set permissions for entrypoint | ||
run: | | ||
ssh ${{ env.SSH_OPTIONS }} 'cd /home/ubuntu/tupan-back/ && sudo chmod +x entrypoint.sh' | ||
- name: Build Docker Compose | ||
run: | | ||
ssh ${{ env.SSH_OPTIONS }} 'cd /home/ubuntu/tupan-back/ && sudo docker-compose build' | ||
- name: Run Docker Compose | ||
run: | | ||
ssh ${{ env.SSH_OPTIONS }} 'cd /home/ubuntu/tupan-back/ && sudo docker-compose up -d' | ||
- name: Cleanup SSH key | ||
run: | | ||
rm -f key.pem |