update Gitea workflow

This commit is contained in:
2026-05-22 21:19:15 +03:00
parent 13af873ec2
commit 2fcb6a120c
+33 -14
View File
@@ -1,11 +1,13 @@
name: TypeScript Bot CI name: TypeScript Bot CI
on: on:
push:
branches: [ main, master, develop ]
pull_request:
workflow_dispatch: workflow_dispatch:
env:
REGISTRY: gitea.mlgt.ru
IMAGE_OWNER: ${{ gitea.repository_owner }}
IMAGE_NAME: tg-chat-bot
jobs: jobs:
check: check:
runs-on: node runs-on: node
@@ -13,17 +15,34 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Set up Docker Buildx
run: pnpm install --frozen-lockfile uses: docker/setup-buildx-action@v3
- name: Typecheck - name: Log into registry ${{ env.REGISTRY }}
run: pnpm exec tsc --noEmit if: gitea.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ gitea.actor }}
password: ${{ secrets.GITEA_TOKEN }}
- name: Lint - name: Extract Docker metadata
run: pnpm run lint 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: Test - name: Build and push Docker image
run: pnpm run test --if-present id: build-and-push
uses: docker/build-push-action@v5
- name: Build with:
run: pnpm run build 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