Skip to content

fixed

fixed #23

Workflow file for this run

name: Build and Deploy Code
on:
push:
branches:
- main
- staging
- test
- dev
pull_request:
branches:
- main
- staging
jobs:
build:
environment:
name: testing
env:
DATABASE_HOSTNAME: ${{vars.DATABASE_HOSTNAME}}
DATABASE_PORT: ${{vars.DATABASE_PORT}}
DATABASE_PASSWORD: ${{secrets.DATABASE_PASSWORD}}
DATABASE_NAME: ${{secrets.DATABASE_NAME}}
DATABASE_USERNAME: ${{secrets.DATABASE_USERNAME}}
SECRET_KEY: ${{secrets.SECRET_KEY}}
ALGORITHM: ${{secrets.ALGORITHM}}
ACCESS_TOKEN_EXPIRE_MINUTES: ${{vars.ACCESS_TOKEN_EXPIRE_MINUTES}}
services:
postgres:
image: postgres
env:
POSTGRES_USER: ${{secrets.DATABASE_USERNAME}}
POSTGRES_PASSWORD: ${{secrets.DATABASE_PASSWORD}}
POSTGRES_DB: ${{secrets.DATABASE_NAME}}_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
runs-on: ubuntu-latest
steps:
- name: Pulling git repo
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Update PIP
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: |
pip install pytest
pytest
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{secrets.DOCKER_HUB_USERNAME}}
password: ${{secrets.DOCKER_HUB_ACCESS_TOKEN}}
- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
builder: ${{steps.buildx.outputs.name}}
push: true
tags: ${{secrets.DOCKER_HUB_USERNAME}}/postapp:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Image digest
run: echo ${{steps.docker_build.outputs.digest}}
deploy:
environment:
name: production
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Deploying
uses: appleboy/ssh-action@master
with:
host: ${{secrets.SSH_HOST}}
key: ${{secrets.SSH_KEY}}
username: ${{secrets.SSH_USER}}
script: |
cd postapp
source .env
wget https://raw.githubusercontent.com/elman23/postapp/main/compose-prod.yml
docker compose -f compose-prod.yml up -d