ci: add missing depends on #5
Workflow file for this run
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 Solis | |
on: | |
push: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
jobs: | |
build-and-push-solis-image: | |
runs-on: ubuntu-latest # This specifies the runner environment | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Build Solis, tag, and push image to Amazon ECR | |
run: | | |
docker buildx create --use --name ecr-deploy-builder-indexer | |
docker buildx build --tag ${{ secrets.ECR_URL }}:indexer-latest --file docker/indexer/Dockerfile . --load --build-arg EXECUTOR_ADDRESS=${{ secrets.EXECUTOR_ADDRESS }} --build-arg ORDERBOOK_ADDRESS=${{ secrets.ORDERBOOK_ADDRESS }} | |
docker push ${{ secrets.ECR_URL }}:solis-latest |