Update did.js #25
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: API Build & Deploy | |
on: | |
push: | |
branches: | |
- testnet | |
- dev | |
paths: | |
- 'api/**' | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install kubectl | |
uses: azure/[email protected] | |
with: | |
version: 'v1.23.6' # default is latest stable | |
id: install | |
- 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 | |
- name: Install kubectl | |
uses: azure/[email protected] | |
- name: Set kubectl context | |
uses: azure/k8s-set-context@v3 | |
with: | |
method: kubeconfig | |
kubeconfig: ${{ secrets.KUBECONFIG }} | |
context: microk8s | |
- name: Check k8s connection | |
run: kubectl get pods | |
- name: Store build time | |
id: build-time | |
shell: bash | |
run: >- | |
echo "::set-output name=time::$(date +%s)" | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
working-directory: ./api | |
env: | |
DOCKER_TAG: indexnetwork/web3-api:${{ steps.build-time.outputs.time }} | |
DOCKER_REGISTRY: 236785930124.dkr.ecr.us-east-1.amazonaws.com | |
run: | | |
docker build -t $DOCKER_TAG . | |
docker tag $DOCKER_TAG $DOCKER_REGISTRY/$DOCKER_TAG | |
docker push $DOCKER_REGISTRY/$DOCKER_TAG | |
docker tag $DOCKER_TAG $DOCKER_REGISTRY/indexnetwork/web3-api:latest-${GITHUB_REF#refs/heads/} | |
docker push $DOCKER_REGISTRY/indexnetwork/web3-api:latest-${GITHUB_REF#refs/heads/} | |
- name: Deploy | |
run: |- | |
kubectl set image deployment/api api=236785930124.dkr.ecr.us-east-1.amazonaws.com/indexnetwork/web3-api:${{ steps.build-time.outputs.time }} --namespace env-${GITHUB_REF#refs/heads/} | |
kubectl set image deployment/consumer consumer=236785930124.dkr.ecr.us-east-1.amazonaws.com/indexnetwork/web3-api:${{ steps.build-time.outputs.time }} --namespace env-${GITHUB_REF#refs/heads/} |