47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
name: Deploy Telegram Bot
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- fix-1.0.0-image
|
|
|
|
env:
|
|
VERSION: 1.0.0
|
|
|
|
jobs:
|
|
# ЧАСТЬ 1: Собираем образы и кладем в Gitea (чтобы делиться с ребятами)
|
|
build-and-push:
|
|
runs-on: ubuntu-latest # Замени на метку твоего раннера, если она другая
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to Gitea Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.codeanddice.ru # НАПРИМЕР: gitea.my-server.com
|
|
username: toutsu
|
|
password: ${{ secrets.GIT_TOKEN }}
|
|
|
|
- name: Build and push Bot
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: src/GmRelay.Bot/Dockerfile
|
|
push: true
|
|
tags: |
|
|
git.codeanddice.ru/toutsu/gmrelay-bot:${{ env.VERSION }}
|
|
labels: |
|
|
org.opencontainers.image.source=https://git.codeanddice.ru/${{ gitea.repository }}
|
|
|
|
- name: Build and push Web
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: src/GmRelay.Web/Dockerfile
|
|
push: true
|
|
tags: |
|
|
git.codeanddice.ru/toutsu/gmrelay-web:${{ env.VERSION }}
|
|
labels: |
|
|
org.opencontainers.image.source=https://git.codeanddice.ru/${{ gitea.repository }}
|
|
|