add payment support of ETH on StarkNet (#45) #27
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: Backend CI | |
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)" | |
required: false | |
default: false | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_LOG: info | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
jobs: | |
build_and_push_docker_images: | |
name: Build and push docker images | |
runs-on: ubuntu-latest-8-cores | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build and push api image | |
run: ./build-and-push-docker-images.sh api | |
- name: Build and push indexer image | |
run: ./build-and-push-docker-images.sh github-indexer | |