Skip to content

Commit

Permalink
Merge pull request #14 from filecoin-project/workflow-cd-process
Browse files Browse the repository at this point in the history
Workflow cd process
  • Loading branch information
jbesraa authored Aug 31, 2023
2 parents c022080 + 50a579f commit 285dcf7
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Docker Image CI/CD Action

on:
push:
tags:
- '*'

jobs:
deploy_image:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- name: Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
mask-password: 'true'
registry-type: public

- name: Build and tag Docker image
run: |
echo "Building Docker image..."
docker build . -t "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"
- name: Push Docker image to ECR
run: |
echo "Pushing Docker image to ECR..."
docker push "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"
- name: Deploy to Lightsail Container Service
run: |
# Define containers.json with desired settings
echo '{
"fp-core": {
"image": "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}",
"ports": {
"8080": "HTTP"
},
"environment": {
}
}
}' > containers.json
# Deploy to Lightsail Container Service
aws lightsail create-container-service-deployment \
--service-name fp-core \
--region us-east-2 \
--containers file://containers.json

0 comments on commit 285dcf7

Please sign in to comment.