Install apt dependencies on deploy #286
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: Deploy to k8s cluster | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- CU-8689pdzrr-k8s-self-hosted-runner | |
jobs: | |
deploy: | |
runs-on: arc-runner-set # K8s self hosted runner | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} | |
# https://github.com/marketplace/actions/slack-github-actions-slack-integration | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
cache-dependency-path: 'requirements/*/dev.txt' | |
- name: Install apt packages | |
run: sudo apt-get install -y git | |
- name: Install dependencies | |
id: pip-install | |
run: | | |
python -m pip install --upgrade pip wheel pip-tools | |
pip-sync requirements/dev/dev.txt | |
- name: Login to Docker | |
id: docker-login | |
run: | | |
inv aws.docker-login | |
- name: Build, tag, push, and deploy image | |
id: build-tag-push-deploy | |
run: | | |
[ "$GITHUB_REF" = refs/heads/main ] && | |
ENV="production" || | |
ENV="staging" | |
echo "env is $ENV" | |
inv $ENV image deploy --verbosity=0 | |
- uses: act10ns/slack@v1 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
# always() means to notify regardless of status | |
if: always() |