(develop) Manual devnet deploy #60
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: (develop) Manual devnet deploy | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs daily at midnight UTC | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
paths: | |
- '.github/workflows/devnet-deploy.yml' | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
REGISTRY: "599564732950.dkr.ecr.us-east-2.amazonaws.com" | |
REPOSITORY: "starknet-remix-plugin" | |
DEV_CLUSTER: "starknet-remix-plugin-ecs-cluster" | |
DEV_SERVICE_NAME: "devnet-development-svc" | |
PROD_CLUSTER: "starknet-remix-plugin-production-ecs-cluster" | |
PROD_SERVICE_NAME: "devnet-production-svc" | |
jobs: | |
Deploy_Dev: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: us-east-2 | |
role-to-assume: arn:aws:iam::599564732950:role/Aws-GH-Action-Assume-Role-Starknet | |
role-session-name: GHStarknet | |
- name: Download task definition | |
run: | | |
aws ecs describe-task-definition --task-definition starknet-remix-development-devnet --query taskDefinition > task-definition.json | |
- name: Update the task definition to use the image from Docker Hub | |
id: task-def | |
uses: aws-actions/amazon-ecs-render-task-definition@v1 | |
with: | |
task-definition: task-definition.json | |
container-name: "devnet" | |
image: shardlabs/starknet-devnet-rs:latest | |
- name: Deploy Amazon ECS task definition | |
uses: aws-actions/amazon-ecs-deploy-task-definition@v1 | |
with: | |
task-definition: ${{ steps.task-def.outputs.task-definition }} | |
service: ${{ env.DEV_SERVICE_NAME }} | |
cluster: ${{ env.DEV_CLUSTER }} | |
wait-for-service-stability: true |