fix: incorrect url #57
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
on: | |
push: | |
branches: | |
- main | |
- feat/ci | |
permissions: | |
id-token: write | |
contents: read | |
name: deploy edcon-crosschain-demo | |
jobs: | |
test: | |
name: run tests | |
strategy: | |
matrix: | |
node: ["18.x"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install dependencies | |
run: pnpm lint | |
- name: Build | |
run: pnpm build | |
deployToSingLrc: | |
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feat/ci' }} | |
name: Deploy to Sing | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
needs: test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::703476792259:role/GithubDeployECS | |
role-session-name: AWSLivenessCheckDeployer | |
aws-region: ap-southeast-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: Build, tag, and push image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: edcon-crosschain-demo | |
IMAGE_TAG: latest | |
run: | | |
# Build a docker container and push it to ECR | |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:$GITHUB_SHA . | |
echo "Pushing image to ECR..." | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$GITHUB_SHA | |
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$GITHUB_SHA" | |
- name: Deploy edcon-crosschain-demo service | |
env: | |
ECS_CLUSTER: lrc-microservices | |
ECS_SERVICE: edcon-crosschain-demo-service | |
run: | | |
aws ecs update-service --cluster $ECS_CLUSTER --service $ECS_SERVICE --force-new-deployment |