-
-
Notifications
You must be signed in to change notification settings - Fork 0
147 lines (130 loc) · 5.15 KB
/
Copy pathbot-build.yml
File metadata and controls
147 lines (130 loc) · 5.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: "Bot - /build"
on:
issue_comment:
types: [created]
permissions:
contents: read
pull-requests: write
issues: write
jobs:
build:
if: >-
github.event.issue.pull_request &&
contains(github.event.comment.body, '/build')
runs-on: ubuntu-latest
steps:
- name: Check org membership
uses: actions/github-script@v9
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
script: |
const user = context.payload.comment.user.login;
try {
const { status } = await github.rest.orgs.checkMembershipForUser({
org: 'floatpane',
username: user
});
if (status !== 204 && status !== 302) {
core.setFailed(`@${user} is not a member of the floatpane org.`);
}
} catch (e) {
await github.rest.reactions.createForIssueComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: context.payload.comment.id,
content: '-1'
});
core.setFailed(`@${user} is not a member of the floatpane org.`);
}
- name: React to comment
uses: actions/github-script@v9
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
script: |
await github.rest.reactions.createForIssueComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: context.payload.comment.id,
content: 'rocket'
});
- name: Get PR ref
id: pr
uses: actions/github-script@v9
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
script: |
const { data: pr } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number
});
core.setOutput('ref', pr.head.ref);
core.setOutput('sha', pr.head.sha);
core.setOutput('repo', pr.head.repo.full_name);
- name: Checkout
uses: actions/checkout@v7
with:
repository: ${{ steps.pr.outputs.repo }}
ref: ${{ steps.pr.outputs.ref }}
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26.5"
- name: Build with GoReleaser (snapshot)
uses: goreleaser/goreleaser-action@v7
with:
version: latest
args: release --snapshot --clean --config .goreleaser.preview.yml
env:
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
- name: Create preview release and upload assets
id: release
env:
GH_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
run: |
TAG="preview-pr${{ github.event.issue.number }}"
SHA="${{ steps.pr.outputs.sha }}"
SHORT_SHA="${SHA:0:7}"
gh release delete "$TAG" --yes --cleanup-tag -R "${{ github.repository }}" 2>/dev/null || true
gh release create "$TAG" dist/*.tar.gz dist/*.zip dist/checksums.txt \
--title "Preview Build (PR #${{ github.event.issue.number }} @ ${SHORT_SHA})" \
--notes "Preview build from PR #${{ github.event.issue.number }} at commit ${SHORT_SHA}. **Not for production use.**" \
--prerelease \
-R "${{ github.repository }}"
echo "tag=$TAG" >> $GITHUB_OUTPUT
- name: Post comment with download links
uses: actions/github-script@v9
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
script: |
const sha = '${{ steps.pr.outputs.sha }}'.slice(0, 7);
const tag = '${{ steps.release.outputs.tag }}';
const base = `${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/releases/download/${tag}`;
const files = [
['Linux', 'amd64', 'loom_preview_linux_amd64.tar.gz'],
['Linux', 'arm64', 'loom_preview_linux_arm64.tar.gz'],
['macOS', 'amd64', 'loom_preview_darwin_amd64.tar.gz'],
['macOS', 'arm64', 'loom_preview_darwin_arm64.tar.gz'],
['Windows', 'amd64', 'loom_preview_windows_amd64.zip'],
['Windows', 'arm64', 'loom_preview_windows_arm64.zip'],
];
const rows = files.map(([os, arch, file]) =>
`| ${os} | ${arch} | [${file}](${base}/${file}) |`
).join('\n');
const body = [
`### Build complete (\`${sha}\`)`,
'',
'> [!WARNING]',
'> This is an **unreviewed PR build** and has not been security audited. It may contain bugs, vulnerabilities, or malicious code. **Do not use for daily use.** Only use for testing purposes.',
'',
'| OS | Arch | Download |',
'|---|---|---|',
rows,
].join('\n');
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body
});