2 Commits

Author SHA1 Message Date
melod1n 89b89c6dcf update Gitea workflow 2026-05-23 08:59:22 +03:00
melod1n 13af873ec2 add Gitea workflow 2026-05-22 21:12:50 +03:00
3 changed files with 52 additions and 6 deletions
+47
View File
@@ -0,0 +1,47 @@
name: TypeScript Bot CI
on:
workflow_dispatch:
env:
REGISTRY: gitea.mlgt.ru
IMAGE_OWNER: ${{ gitea.repository_owner }}
IMAGE_NAME: tg-chat-bot
jobs:
build:
runs-on: node26-docker
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- 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: 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
+4 -5
View File
@@ -8,7 +8,7 @@
"name": "tg-chat-bot",
"version": "1.0.0",
"dependencies": {
"@google/genai": "^2.4.0",
"@google/genai": "^1.50.1",
"@libsql/client": "^0.17.3",
"@mistralai/mistralai": "^1.15.1",
"@napi-rs/canvas": "^0.1.100",
@@ -996,10 +996,9 @@
}
},
"node_modules/@google/genai": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@google/genai/-/genai-2.4.0.tgz",
"integrity": "sha512-q5q26X/yNKjbzrRdVVDIM9KEmN4dhezmhyliCDIn8mPGT0AlfzOqQfZ5iNCGRCEHSPd86oUdhpNpuzAkEZ5LQg==",
"hasInstallScript": true,
"version": "1.50.1",
"resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.50.1.tgz",
"integrity": "sha512-YbkX7H9+1Pt8wOt7DDREy8XSoiL6fRDzZQRyaVBarFf8MR3zHGqVdvM4cLbDXqPhxqvegZShgfxb8kw9C7YhAQ==",
"license": "Apache-2.0",
"dependencies": {
"google-auth-library": "^10.3.0",
+1 -1
View File
@@ -8,7 +8,7 @@
"bun:start": "bun run dist/index.js"
},
"dependencies": {
"@google/genai": "^2.4.0",
"@google/genai": "^1.50.1",
"@libsql/client": "^0.17.3",
"@mistralai/mistralai": "^1.15.1",
"@napi-rs/canvas": "^0.1.100",