Skip to content

finished end to end on label and supabase created/deleted fix #26

finished end to end on label and supabase created/deleted fix

finished end to end on label and supabase created/deleted fix #26

Workflow file for this run

name: FastAPI CI/CD
on:
# Trigger the workflow on push
push:
branches:
# Push events on main branch
- main
# The Job defines a series of steps that execute on the same runner.
jobs:
CI:
# Define the runner used in the workflow
runs-on: ubuntu-latest
steps:
# Check out repo so our workflow can access it
- uses: actions/checkout@v2
# Step-1 Setup Python
- name: Set up Python
# This action sets up a Python environment for use in actions
uses: actions/setup-python@v2
with:
python-version: 3.9
# optional: architecture: x64 x64 or x86. Defaults to x64 if not specified
# Step-2 Install Python Virtual ENV
- name: Install Python Virtual ENV
run: pip3 install virtualenv
# # Step-3 Setup Virtual ENV
# # https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows
# - name: Virtual ENV
# uses: actions/cache@v2
# id: cache-venv # name for referring later
# with:
# path: venv # what we cache: the Virtual ENV
# # The cache key depends on requirements.txt
# key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }}
# restore-keys: |
# ${{ runner.os }}-venv-
# Step-4 Build a Virtual ENV, but only if it doesn't already exist
- name: Activate Virtual ENV
run: python -m venv venv && source venv/bin/activate && pip3 install -r requirements.txt
# if: steps.cache-venv.outputs.cache-hit != 'true'
- name: Create archive of dependencies
run: |
cd ./venv/lib/python3.9/site-packages
zip -r9 ../../../../app.zip .
- name: Add APP files to Zip file
run: cd ./app && zip -g ../app.zip -r .
- name: Upload zip file artifact
uses: actions/upload-artifact@v2
with:
name: app
path: app.zip
CD:
runs-on: ubuntu-latest
needs: [CI]
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps:
- name: Install AWS CLI
uses: unfor19/install-aws-cli-action@v1
with:
version: 1
env:
AWS_ACCESS_KEY_ID: AKIA5ZOUUDPV4JSVHC5U
AWS_SECRET_ACCESS_KEY: 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
AWS_DEFAULT_REGION: us-west-1
- name: Download Lambda app.zip
uses: actions/download-artifact@v2
with:
name: app
- name: Upload to S3
run: aws s3 cp app.zip s3://hiroshi-nikita/app.zip
env:
AWS_ACCESS_KEY_ID: AKIA5ZOUUDPV4JSVHC5U
AWS_SECRET_ACCESS_KEY: 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
AWS_DEFAULT_REGION: us-west-1
- name: Deploy new Lambda
run: aws lambda update-function-code --function-name Webhook --s3-bucket hiroshi-nikita --s3-key app.zip
env:
AWS_ACCESS_KEY_ID: AKIA5ZOUUDPV4JSVHC5U
AWS_SECRET_ACCESS_KEY: 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
AWS_DEFAULT_REGION: us-west-1