From e15d2e2c107c99aa75bbd96362d8d84d6645076b Mon Sep 17 00:00:00 2001 From: leo42 Date: Mon, 30 Dec 2024 16:12:25 +0200 Subject: [PATCH] Create testingCi.yml --- .github/workflows/testingCi.yml | 88 +++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 .github/workflows/testingCi.yml diff --git a/.github/workflows/testingCi.yml b/.github/workflows/testingCi.yml new file mode 100644 index 0000000..6fd72ec --- /dev/null +++ b/.github/workflows/testingCi.yml @@ -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