Skip to content

Add total funds raised metric #17

Add total funds raised metric

Add total funds raised metric #17

Workflow file for this run

name: Build and Push Docker Image
on:
push:
tags:
- 'v*.*.*'
jobs:
backend:
name: Build and Push Backend Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build and push Backend Docker image
uses: docker/build-push-action@v6
with:
push: true
context: ./backend
file: ./backend/Dockerfile
platforms: linux/amd64
tags: |
ethcf/transparency:backend-${{ github.ref_name }}
ethcf/transparency:backend-latest
frontend:
name: Build and Push Frontend Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build and push Frontend Docker image
uses: docker/build-push-action@v6
with:
push: true
context: ./frontend
file: ./frontend/Dockerfile
platforms: linux/amd64
tags: |
ethcf/transparency:frontend-${{ github.ref_name }}
ethcf/transparency:frontend-latest