diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index b719b95..14f820a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,29 +1,47 @@ 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 + build: + runs-on: node26-docker steps: - uses: actions/checkout@v4 - - name: Install dependencies - run: pnpm install --frozen-lockfile + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - - name: Typecheck - run: pnpm exec tsc --noEmit + - name: Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ secrets.REGISTRY_USER }} + password: ${{ secrets.REGISTRY_TOKEN }} - - name: Lint - run: pnpm run lint + - 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 + type=sha,prefix=sha- - - name: Test - run: pnpm run test --if-present - - - name: Build - run: pnpm run build + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:buildcache + cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:buildcache,mode=max \ No newline at end of file