update Gitea workflow

This commit is contained in:
2026-05-22 21:19:15 +03:00
parent 13af873ec2
commit 89b89c6dcf
+34 -16
View File
@@ -1,29 +1,47 @@
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: build:
runs-on: node runs-on: node26-docker
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 uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_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
type=sha,prefix=sha-
- name: Test - name: Build and push Docker image
run: pnpm run test --if-present uses: docker/build-push-action@v5
with:
- name: Build context: .
run: pnpm run build 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