Skip to content

Commit e0e9b82

Browse files
authored
Merge pull request #5 from tencentcloudstack/fix/release-config
Fix/release config
2 parents b43afe7 + 9c4da33 commit e0e9b82

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/release.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,26 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
41+
uses: actions/checkout@v4
4242
- name: Unshallow
4343
run: git fetch --prune --unshallow
4444
- name: Set up Go
45-
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
45+
uses: actions/setup-go@v5
4646
with:
4747
go-version: ${{ needs.get-go-version.outputs.go-version }}
4848
- name: Describe plugin
4949
id: plugin_describe
5050
run: echo "api_version=$(go run . describe | jq -r '.api_version')" >> "$GITHUB_OUTPUT"
51-
- name: Install signore
52-
uses: hashicorp/setup-signore-package@v1
51+
# - name: Install signore
52+
# uses: hashicorp/setup-signore-package@v1
5353
- name: Run GoReleaser
54-
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0
54+
uses: goreleaser/goreleaser-action@v6
5555
with:
5656
version: latest
5757
args: release --clean --timeout 120m
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
API_VERSION: ${{ steps.plugin_describe.outputs.api_version }}
61-
SIGNORE_CLIENT_ID: ${{ secrets.SIGNORE_CLIENT_ID }}
62-
SIGNORE_CLIENT_SECRET: ${{ secrets.SIGNORE_CLIENT_SECRET }}
63-
SIGNORE_SIGNER: ${{ secrets.SIGNORE_SIGNER }}
61+
# SIGNORE_CLIENT_ID: ${{ secrets.SIGNORE_CLIENT_ID }}
62+
# SIGNORE_CLIENT_SECRET: ${{ secrets.SIGNORE_CLIENT_SECRET }}
63+
# SIGNORE_SIGNER: ${{ secrets.SIGNORE_SIGNER }}

.goreleaser.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ archives:
9393
checksum:
9494
name_template: '{{ .ProjectName }}_v{{ .Version }}_SHA256SUMS'
9595
algorithm: sha256
96-
signs:
97-
- cmd: signore
98-
args: ["sign", "--dearmor", "--file", "${artifact}", "--out", "${signature}"]
99-
artifacts: checksum
100-
signature: ${artifact}.sig
96+
# signs:
97+
# - cmd: signore
98+
# args: ["sign", "--dearmor", "--file", "${artifact}", "--out", "${signature}"]
99+
# artifacts: checksum
100+
# signature: ${artifact}.sig
101101

102102
changelog:
103103
use: github-native

0 commit comments

Comments
 (0)