62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
name: TypeScript Bot CI
|
|
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
REGISTRY: gitea.mlgt.ru
|
|
IMAGE_OWNER: ${{ gitea.repository_owner }}
|
|
IMAGE_NAME: tg-chat-bot
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: node26-docker
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Cache package managers
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.npm
|
|
~/.cache/yarn
|
|
/pnpm/store
|
|
key: node-${{ hashFiles('package-lock.json', 'pnpm-lock.yaml', 'yarn.lock') }}
|
|
restore-keys: |
|
|
node-
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
if: gitea.event_name != 'pull_request'
|
|
run: |
|
|
echo "${{ secrets.GITEA_TOKEN }}" | docker login "$REGISTRY" \
|
|
-u "${{ gitea.actor }}" \
|
|
--password-stdin
|
|
|
|
- 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
|
|
|
|
- name: Build and push Docker image
|
|
id: build-and-push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
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 |