fix: 更新上游,优化获取群系统消息 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
run: | | |
git version | |
git clone "${{ github.event.repository.html_url }}" /home/runner/work/go-cqhttp/go-cqhttp | |
git checkout "${{ github.ref }}" | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
#- name: Checkout Dist | |
# uses: actions/checkout@v2 | |
# with: | |
# repository: 'gocq/dist' | |
# ref: master | |
# ssh-key: ${{ secrets.SSH_KEY }} | |
# path: upstream/dist | |
#- name: Update Dist | |
# run: | | |
# chmod +x scripts/upload_dist.sh | |
# ./scripts/upload_dist.sh |