From 35fd19ba58caf45ecb0f3e602e4c1e5f79ad243e Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Fri, 22 May 2026 21:19:15 +0300 Subject: [PATCH] update Gitea workflow --- .gitea/workflows/build.yml | 57 ++++++++++++++++++++++++++++---------- 1 file changed, 43 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index b719b95..1d34e52 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,29 +1,58 @@ name: TypeScript Bot CI on: - push: - branches: [ main, master, develop ] - pull_request: workflow_dispatch: +env: + REGISTRY: gitea.mlgt.ru + IMAGE_OWNER: ${{ gitea.repository_owner }} + IMAGE_NAME: tg-chat-bot + jobs: check: - runs-on: node + runs-on: node26 steps: - uses: actions/checkout@v4 - - name: Install dependencies - run: pnpm install --frozen-lockfile + - name: Cache package managers + uses: actions/cache@v4 + with: + path: | + ~/.npm + ~/.cache/yarn + /pnpm/store + key: node-${{ hashFiles('package-lock.json', 'pnpm-lock.yaml', 'yarn.lock') }} + restore-keys: | + node- - - name: Typecheck - run: pnpm exec tsc --noEmit + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - - name: Lint - run: pnpm run lint + - name: Log into registry ${{ env.REGISTRY }} + if: gitea.event_name != 'pull_request' + run: | + echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "$REGISTRY" \ + -u "${{ secrets.REGISTRY_USER }}" \ + --password-stdin - - name: Test - run: pnpm run test --if-present + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }} + tags: | + type=raw,value=latest,enable=${{ gitea.ref_name == 'master' }} + type=ref,event=branch - - name: Build - run: pnpm run build + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile + push: ${{ gitea.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max \ No newline at end of file