-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (64 loc) · 2.43 KB
/
release.yaml
File metadata and controls
66 lines (64 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Release
on:
push:
branches:
- main
permissions:
contents: write # to create release commit (google-github-actions/release-please-action)
pull-requests: write # to create release PR (google-github-actions/release-please-action)
issues: write # to create release issue (google-github-actions/release-please-action)
jobs:
goreleaser:
runs-on: ubuntu-latest
environment: CI
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
- uses: actions/checkout@v5
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v5
with:
go-version: "1.26"
- uses: PromptPal/github-action@v1.0.3
env:
PROMPTPAL_ENDPOINT: ${{ secrets.PROMPTPAL_ENDPOINT }}
PROMPTPAL_API_TOKEN: ${{ secrets.PROMPTPAL_API_TOKEN }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
# generate types by PromptPal CLI
command: pp g
- name: Generate
run: |
echo "GH_TAG=$(echo $GITHUB_REF | awk -F / '{print $3}')" >> $GITHUB_ENV
go install github.com/vektra/mockery/v3@v3.5.0
mockery
- name: Test
run: go test -timeout 3m -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.4.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
- uses: goreleaser/goreleaser-action@v6
if: ${{ steps.release.outputs.release_created }}
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
PP_ENDPOINT: ${{ secrets.PROMPTPAL_ENDPOINT }}
PP_TOKEN: ${{ secrets.PROMPTPAL_API_TOKEN_PROD }}
VERSION: ${{ steps.release.outputs.tag_name }}
UPTRACE_DSN: ${{ secrets.UPTRACE_DSN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QUILL_SIGN_P12: ${{ secrets.QUILL_SIGN_P12 }}
QUILL_SIGN_PASSWORD: ${{ secrets.QUILL_SIGN_PASSWORD }}
QUILL_NOTARY_KEY: ${{ secrets.QUILL_NOTARY_KEY }}
QUILL_NOTARY_KEY_ID: ${{ secrets.QUILL_NOTARY_KEY_ID }}
QUILL_NOTARY_ISSUER: ${{ secrets.QUILL_NOTARY_ISSUER }}
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}