diff --git a/.gitea/workflows/dev.yaml b/.gitea/workflows/dev.yaml deleted file mode 100644 index 941d9337..00000000 --- a/.gitea/workflows/dev.yaml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build Latest and dev images -on: - push: - branches: - - dev - -jobs: - build-container: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 19 - - run: npm i -g pnpm@8 && pnpm i - - run: pnpm licenses:export - - name: Login to registry - uses: docker/login-action@v3 - with: - registry: registry.odit.services - username: ${{ vars.REGISTRY_USERNAME }} - password: ${{ secrets.REGISTRY_PASSWORD }} - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Build and push - uses: docker/build-push-action@v6 - with: - push: true - tags: | - ${{ vars.REGISTRY }}/lfk/frontend:dev - ${{ vars.REGISTRY }}/lfk/frontend:latest - platforms: linux/amd64,linux/arm64