Skip to content

Commit

Permalink
Merge branch 'main' into fix-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kokal33 committed Nov 16, 2023
2 parents 02ce615 + 20c1e96 commit 0e47a63
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Docker Image CI/CD Action
name: Production Deployment

on:
push:
tags:
- '*'

jobs:
deploy_image:
deploy_to_prod:
runs-on: ubuntu-latest

steps:
Expand Down
76 changes: 76 additions & 0 deletions .github/workflows/deploy_to_staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: Staging Deployment

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
deploy_to_staging:
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 }}" -f fplus-http-server/Dockerfile fplus-http-server
- 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 '{
"filplus-core": {
"image": "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}",
"ports": {
"8080": "HTTP"
},
"environment": {
"GH_PRIVATE_KEY": "${{secrets.GH_STAGING_PRIVATE_KEY}}",
}
}
}' > containers.json
# Define public-endpoint.json
echo '{
"containerName": "filplus-core",
"containerPort": 8080,
"healthCheck": {
"healthyThreshold": 3,
"unhealthyThreshold": 3,
"timeoutSeconds": 5,
"intervalSeconds": 60,
"path": "/health",
"successCodes": "200"
}
}' > public-endpoint.json
# Deploy to Lightsail Container Service
aws lightsail create-container-service-deployment \
--service-name fp-core \
--region us-east-2 \
--containers file://containers.json \
--public-endpoint file://public-endpoint.json
6 changes: 1 addition & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,5 @@ jobs:
- uses: actions/checkout@v3
- name: Run tests
env:
GH_PRIVATE_KEY: ${{ secrets.GH_PRIVATE_KEY }}
GITHUB_OWNER: ${{secrets.GH_OWNER}}
GITHUB_REPO: ${{secrets.GH_REPO}}
GITHUB_APP_ID: ${{secrets.GH_APP_ID}}
GITHUB_INSTALLATION_ID: ${{secrets.GH_INSTALLATION_ID}}
GH_PRIVATE_KEY: ${{ secrets.GH_STAGING_PRIVATE_KEY }}
run: cargo test -- --nocapture

0 comments on commit 0e47a63

Please sign in to comment.