Skip to content

Merge pull request #84 from leo42/Bug-Fixes-04-06-24 #11

Merge pull request #84 from leo42/Bug-Fixes-04-06-24

Merge pull request #84 from leo42/Bug-Fixes-04-06-24 #11

Workflow file for this run

on:
push:
tags:
- 'v*'
jobs:
Frontend:
runs-on: ubuntu-latest
steps:
-
name: Debug RELEASE_TAG
run: echo "github.ref= ${{ github.ref_name }}"
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push Fe
uses: docker/build-push-action@v5
with:
file: ./Fe/Dockerfile
push: true
tags: leo42/broclan:${{ github.ref_name }}
ImageGenerator:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push ImageGenerator
uses: docker/build-push-action@v5
with:
file: ./Be/imageGenerator/Dockerfile
push: true
tags: leo42/image_generator:${{ github.ref_name }}
Indexer:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push Indexer
uses: docker/build-push-action@v5
with:
file: ./Be/indexer/Dockerfile
push: true
tags: leo42/indexer:${{ github.ref_name }}
tokenApi:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push token_api
uses: docker/build-push-action@v5
with:
file: "./Be/tokenApi/Dockerfile"
push: true
tags: leo42/token_api:${{ github.ref_name }}
passthrough:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push Blockfrost passthrough
uses: docker/build-push-action@v5
with:
file: ./Be/passthrough/Dockerfile
push: true
tags: leo42/passthrough:${{ github.ref_name }}