From 4e305c0a4ad0fb538e2e79913615d7762961cef7 Mon Sep 17 00:00:00 2001 From: steinhelge Date: Mon, 17 Nov 2025 14:50:47 +0100 Subject: [PATCH] Add CI workflow and update Docker/.NET configs --- .gitea/worflows/build.yml | 53 --------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .gitea/worflows/build.yml diff --git a/.gitea/worflows/build.yml b/.gitea/worflows/build.yml deleted file mode 100644 index 61be1b5..0000000 --- a/.gitea/worflows/build.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: Build & Deploy MinAttest - -on: - push: - branches: [ "main" ] - -jobs: - build: - runs-on: docker - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Log in to Gitea Container Registry - run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.theriise.net -u steinhelge --password-stdin - - # - # Frontend - # - - name: Build Frontend - run: | - docker build -t gitea.theriise.net/steinhelge/minattest-frontend:latest frontend - - - name: Push Frontend - run: docker push gitea.theriise.net/steinhelge/minattest-frontend:latest - - # - # Backend API - # - - name: Build API - run: | - docker build \ - -t gitea.theriise.net/steinhelge/minattest-api:latest \ - -f backend/Dockerfile \ - backend - - - name: Push API - run: docker push gitea.theriise.net/steinhelge/minattest-api:latest - - # - # App-host (BFF) - # - - name: Build App Host - run: | - docker build \ - -t gitea.theriise.net/steinhelge/minattest-apphost:latest \ - -f app-host/Dockerfile \ - app-host - - - name: Push App Host - run: docker push gitea.theriise.net/steinhelge/minattest-apphost:latest -