Skip to content

tg bot Docker Image CI #16

tg bot Docker Image CI

tg bot Docker Image CI #16

Workflow file for this run

name: tg bot Docker Image CI
on:
push:
tags:
- v*
env:
APP_NAME: hidden/telegram-bot #这是您的镜像名
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate App Version
run: echo APP_VERSION=`git describe --tags --always` >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ env.APP_NAME }}:latest
${{ env.APP_NAME }}:${{ env.APP_VERSION }}