Various fixes (average rating, ERC20 decimals, styling) #41
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: Docker Image CI | |
on: | |
push: | |
branches: [ "add_dockerfiles", "newlance" ] | |
pull_request: | |
branches: [ "add_dockerfiles", "newlance" ] | |
permissions: | |
contents: read | |
jobs: | |
docker_build: | |
strategy: | |
matrix: | |
image: ["server", "ui"] | |
env: ["qa"] | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
name: Docker Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ethlance code | |
uses: actions/checkout@v4 | |
- name: Checkout ethlance-configs repo | |
uses: actions/checkout@v4 | |
with: | |
repository: district0x/ethlance-config | |
path: ethlance-config | |
token: ${{ secrets.ETHLANCE_CONFIG_PAT }} | |
ref: docker_build | |
- name: Copy configs | |
run: | | |
cp -r ethlance-config/config . | |
ls -lah config/ | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v2 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v2 | |
# - 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: ${{ secrets.AWS_DEFAULT_REGION }} | |
# - name: Login to Amazon ECR | |
# id: login-ecr | |
# uses: aws-actions/amazon-ecr-login@v1 | |
# - name: Build and push | |
# uses: docker/build-push-action@v4 | |
# with: | |
# context: . | |
# platforms: linux/amd64,linux/arm64 | |
# file: docker-builds/${{ matrix.image }}/Dockerfile | |
# build-args: BUILD_ENV=${{ matrix.env }} | |
# push: true | |
# tags: ${{ secrets.ECR_REGISTRY }}/streamtide-${{ matrix.image }}:latest-${{ matrix.env }} |