Skip to content

Commit

Permalink
Create testingCi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
leo42 committed Dec 30, 2024
1 parent 9d08721 commit e15d2e2
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions .github/workflows/testingCi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: docker-ci
on:
push:
branches:
- 'ci-testing'

jobs:
Frontend:
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 Fe
uses: docker/build-push-action@v5
with:
working-directory: ./Fe
push: true
tags: leo42/broclan:latest
# 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:latest
# 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:latest
# 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:latest
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:latest

0 comments on commit e15d2e2

Please sign in to comment.