Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 89b89c6dcf | |||
| 13af873ec2 |
@@ -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
|
||||
Generated
+5
-6
@@ -10,7 +10,7 @@
|
||||
"dependencies": {
|
||||
"@google/genai": "^1.50.1",
|
||||
"@libsql/client": "^0.17.3",
|
||||
"@mistralai/mistralai": "^2.2.1",
|
||||
"@mistralai/mistralai": "^1.15.1",
|
||||
"@napi-rs/canvas": "^0.1.100",
|
||||
"axios": "^1.15.2",
|
||||
"dotenv": "^17.4.2",
|
||||
@@ -1732,14 +1732,13 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@mistralai/mistralai": {
|
||||
"version": "2.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-2.2.1.tgz",
|
||||
"integrity": "sha512-uKU8CZmL2RzYKmplsU01hii4p3pe4HqJefpWNRWXm1Tcm0Sm4xXfwSLIy4k7ZCPlbETCGcp69E7hZs+WOJ5itQ==",
|
||||
"license": "Apache-2.0",
|
||||
"version": "1.15.1",
|
||||
"resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-1.15.1.tgz",
|
||||
"integrity": "sha512-fb995eiz3r0KsBGtRjFV+/iLbX+UpfalxpF+YitT3R6ukrPD4PN+FGwwmYcRFhNAzVzDUtTVxQYnjQWEnwV5nw==",
|
||||
"dependencies": {
|
||||
"ws": "^8.18.0",
|
||||
"zod": "^3.25.0 || ^4.0.0",
|
||||
"zod-to-json-schema": "^3.25.0"
|
||||
"zod-to-json-schema": "^3.24.1"
|
||||
}
|
||||
},
|
||||
"node_modules/@napi-rs/canvas": {
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
"dependencies": {
|
||||
"@google/genai": "^1.50.1",
|
||||
"@libsql/client": "^0.17.3",
|
||||
"@mistralai/mistralai": "^2.2.1",
|
||||
"@mistralai/mistralai": "^1.15.1",
|
||||
"@napi-rs/canvas": "^0.1.100",
|
||||
"axios": "^1.15.2",
|
||||
"dotenv": "^17.4.2",
|
||||
|
||||
Reference in New Issue
Block a user