mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-11 22:25:44 +08:00
* Update CI workflow actions version * Update lint workflow actions version * Update release workflow actions version * Update Docker build workflow actions version * disable lint cache to prevent bugs * Update golinter action to latest * Update Go to 1.20 in CI workflow
42 lines
857 B
YAML
42 lines
857 B
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
goreleaser:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.20'
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v4
|
|
with:
|
|
version: latest
|
|
args: release --rm-dist
|
|
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
|