-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (56 loc) · 1.5 KB
/
Copy pathrelease.yml
File metadata and controls
68 lines (56 loc) · 1.5 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
name: Release
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Set up pnpm
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run build
run: pnpm run build
- name: Run ESLint
run: pnpm run eslint
- name: Run tests
run: pnpm run test
- name: Validate assets
run: pnpm run validate:assets
- name: Build release archive
run: |
tar -czf open-ultracode-release.tar.gz \
.opencode \
src \
docs \
README.md \
opencode.json \
package.json \
pnpm-workspace.yaml \
tsconfig.json \
install.sh \
install-dev.sh
- name: Publish GitHub release
env:
GH_TOKEN: ${{ github.token }}
run: |
if [ "${GITHUB_REF_TYPE}" = "tag" ]; then
tag="${GITHUB_REF_NAME}"
else
tag="manual-${GITHUB_RUN_NUMBER}"
fi
gh release create "$tag" open-ultracode-release.tar.gz \
--title "$tag" \
--notes "OpenUltraCode release archive for install.sh." \
--target "$GITHUB_SHA"