Deploy Demonet #3
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 Demonet | |
on: workflow_dispatch | |
jobs: | |
solver-build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
context: app | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
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 | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
with: | |
mask-password: "true" | |
- name: Solver build, tag, and push image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY_SOLVER: ${{ secrets.ECR_REPOSITORY_SOLVER }} | |
run: | | |
docker build \ | |
-t $ECR_REPOSITORY_SOLVER \ | |
-f ./docker/solver/Dockerfile \ | |
--build-arg="expose_via=cloudflare" \ | |
--build-arg="network=demonet" \ | |
. | |
docker tag $ECR_REPOSITORY_SOLVER:latest $ECR_REGISTRY/$ECR_REPOSITORY_SOLVER:latest | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY_SOLVER:latest | |
- name: Solver deploy to EC2 instance | |
uses: appleboy/ssh-action@master | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY_SOLVER: ${{ secrets.ECR_REPOSITORY_SOLVER }} | |
DEMONET_DOPPLER_TOKEN_SOLVER: ${{ secrets.DEMONET_DOPPLER_TOKEN_SOLVER }} | |
with: | |
host: ${{ secrets.DEMONET_EC2_HOST_SOLVER }} | |
username: ${{ secrets.DEMONET_EC2_USERNAME_SOLVER }} | |
key: ${{ secrets.DEMONET_EC2_PRIVATE_KEY_SOLVER }} | |
envs: ECR_REGISTRY, ECR_REPOSITORY_SOLVER, DEMONET_DOPPLER_TOKEN_SOLVER | |
script_stop: true | |
script: | | |
docker stop solver || true | |
docker rm solver || true | |
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin $ECR_REGISTRY | |
docker system prune -af | |
docker pull $ECR_REGISTRY/$ECR_REPOSITORY_SOLVER:latest | |
docker run \ | |
-d \ | |
--restart always \ | |
--name solver \ | |
--log-opt max-size=100m \ | |
-e DOPPLER_TOKEN=$DEMONET_DOPPLER_TOKEN_SOLVER \ | |
$ECR_REGISTRY/$ECR_REPOSITORY_SOLVER:latest |