mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 11:07:39 +08:00
* fix: group not found report (#2312) 解决以下问题: 当群组踢人时,该人不在群内,返回“群聊不存在”的BUG https://github.com/Mrs4s/go-cqhttp/issues/1774#issue-1459854639 * Update bug-report.yaml (#2234) * 更新docker action, 支持更多的平台 (#2217) * Update build_docker_image.yml * Update docker-entrypoint.sh * Update build_docker_image.yml * ✨ update docker action, more platforms are supported --------- Co-authored-by: xiwangly2 <1334850101@qq.om> Co-authored-by: 源文雨 <41315874+fumiama@users.noreply.github.com> * 🐛 修复时区不是东八区的 BUG (#2212) 设置 TZ 环境变量需要先装`tzdata`这个包才会生效 * Update bug-report.yaml (#2126) Co-authored-by: 源文雨 <41315874+fumiama@users.noreply.github.com> * Docker: support continuous params on CMD option (#1829) now it supports usage like `docker run -it --rm go-cqhttp -faststart` Co-authored-by: 源文雨 <41315874+fumiama@users.noreply.github.com> * make lint happy --------- Co-authored-by: PSoul <psoul1@163.com> Co-authored-by: 简律纯 <i@jyunko.cn> Co-authored-by: LY <1334850101@qq.com> Co-authored-by: xiwangly2 <1334850101@qq.om> Co-authored-by: Antonia Adams <10476982+li-xunhuan@users.noreply.github.com> Co-authored-by: Akirami <66513481+A-kirami@users.noreply.github.com> Co-authored-by: Nanahira <78877@qq.com>
81 lines
2.3 KiB
YAML
81 lines
2.3 KiB
YAML
name: Build And Push Docker Image
|
||
|
||
on:
|
||
push:
|
||
branches:
|
||
- 'master'
|
||
- 'dev'
|
||
# Sequence of patterns matched against refs/tags
|
||
tags:
|
||
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
||
|
||
workflow_dispatch:
|
||
|
||
jobs:
|
||
build:
|
||
|
||
runs-on: ubuntu-latest
|
||
|
||
permissions:
|
||
packages: write
|
||
contents: read
|
||
|
||
steps:
|
||
- uses: actions/checkout@v3
|
||
|
||
- name: Set time zone
|
||
uses: szenius/set-timezone@v1.1
|
||
with:
|
||
timezoneLinux: "Asia/Shanghai"
|
||
timezoneMacos: "Asia/Shanghai"
|
||
timezoneWindows: "China Standard Time"
|
||
|
||
# # 如果有 dockerhub 账户,可以在github的secrets中配置下面两个,然后取消下面注释的这几行,并在meta步骤的images增加一行 ${{ github.repository }}
|
||
# - name: Login to DockerHub
|
||
# uses: docker/login-action@v1
|
||
# with:
|
||
# username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||
# password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||
|
||
- name: Login to GHCR
|
||
uses: docker/login-action@v2
|
||
with:
|
||
registry: ghcr.io
|
||
username: ${{ github.repository_owner }}
|
||
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
||
- name: Extract metadata (tags, labels) for Docker
|
||
id: meta
|
||
uses: docker/metadata-action@v4
|
||
with:
|
||
images: |
|
||
ghcr.io/${{ github.repository }}
|
||
# generate Docker tags based on the following events/attributes
|
||
# nightly, master, pr-2, 1.2.3, 1.2, 1
|
||
tags: |
|
||
type=schedule,pattern=nightly
|
||
type=edge
|
||
type=ref,event=branch
|
||
type=ref,event=pr
|
||
type=semver,pattern={{version}}
|
||
type=semver,pattern={{major}}.{{minor}}
|
||
type=semver,pattern={{major}}
|
||
|
||
- name: Set up QEMU
|
||
uses: docker/setup-qemu-action@v2
|
||
|
||
- name: Set up Docker Buildx
|
||
uses: docker/setup-buildx-action@v2
|
||
|
||
- name: Build and push
|
||
id: docker_build
|
||
uses: docker/build-push-action@v4
|
||
with:
|
||
context: .
|
||
push: ${{ github.event_name != 'pull_request' }}
|
||
tags: ${{ steps.meta.outputs.tags }}
|
||
labels: ${{ steps.meta.outputs.labels }}
|
||
cache-from: type=gha
|
||
cache-to: type=gha,mode=max
|
||
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/ppc64le,linux/s390x
|