Skip to content

fix(deps): update all non-major dependencies #137

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #137

Workflow file for this run

name: CD
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 5

Check failure on line 12 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
steps:
- name: 📦 Checkout code
uses: actions/checkout@v4
- name: ⚙️ Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: 🔐 Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
with:
mask-password: true
- name: 🏗️ Build, tag and push Image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: ufabc-next-backend
IMAGE_TAG: ${{ github.sha }}
GIT_SECRET_PRIVATE_KEY: ${{ secrets.GIT_SECRET_PRIVATE_KEY }}
GIT_SECRET_PASSWORD: ${{ secrets.GIT_SECRET_PASSWORD }}
run: |
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG \
--build-arg GIT_SECRET_PRIVATE_KEY="$GIT_SECRET_PRIVATE_KEY" \
--build-arg GIT_SECRET_PASSWORD="$GIT_SECRET_PASSWORD" \
--no-cache --progress=plain .
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
- name: 🚀 Deploy and start container
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOSTNAME }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SECRET_SSH_KEY }}
script: |
docker pull ${{ secrets.AWS_ACCOUNT_ID }}.${{ secrets.ECR_REGISTRY }}/ufabc-next-backend:${{ github.sha }}
docker stop ufabc-next-backend
docker rm ufabc-next-backend
docker run -d --name ufabc-next-backend -p ${{ secrets.PORT }}:${{ secrets.PORT }} ${{ secrets.AWS_ACCOUNT_ID }}.${{ secrets.ECR_REGISTRY }}/ufabc-next-backend:${{ github.sha }}