-
Notifications
You must be signed in to change notification settings - Fork 1
225 lines (188 loc) · 6.11 KB
/
Copy pathpublish.yml
File metadata and controls
225 lines (188 loc) · 6.11 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
name: Publish
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
inputs:
task:
description: Task to run
required: true
default: release
type: choice
options:
- release
- unpublish
bump:
description: Version bump type (release only)
required: true
default: patch
type: choice
options:
- patch
- minor
- major
- prerelease
preid:
description: Pre-release identifier (prerelease only)
required: false
default: beta
type: string
npm_tag:
description: npm dist-tag (auto = latest for stable, beta for prerelease)
required: true
default: auto
type: choice
options:
- auto
- latest
- beta
- next
unpublish_versions:
description: Space-separated versions to unpublish (unpublish only)
required: false
default: "0.1.0-beta.3 0.1.0-beta.4 0.1.0-beta.5 0.1.0-beta.6 0.1.0-beta.7 0.1.0-beta.8"
type: string
confirm_unpublish:
description: Type UNPUBLISH to confirm unpublish task
required: false
default: ""
type: string
permissions:
contents: read
concurrency:
group: publish-${{ github.event_name }}-${{ github.ref }}-${{ github.event.inputs.task || 'ci' }}
cancel-in-progress: false
jobs:
ci:
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Typecheck
run: bunx tsc --noEmit
- name: Test
run: bunx vitest run
release:
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.task == 'release' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Configure git author
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Verify npm authentication
run: npm whoami
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build
run: bun run build
- name: Typecheck
run: bunx tsc --noEmit
- name: Test
run: bunx vitest run
- name: Validate release inputs
run: |
if [ "${{ github.event.inputs.bump }}" = "prerelease" ] && [ -z "${{ github.event.inputs.preid }}" ]; then
echo "preid is required when bump=prerelease"
exit 1
fi
- name: Bump version
id: version
run: |
if [ "${{ github.event.inputs.bump }}" = "prerelease" ]; then
bun pm version prerelease --preid "${{ github.event.inputs.preid }}"
else
bun pm version "${{ github.event.inputs.bump }}"
fi
VERSION=$(bun -e "import pkg from './package.json'; console.log(pkg.version)")
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Resolve publish tag
id: publish_tag
run: |
TAG="${{ github.event.inputs.npm_tag }}"
VERSION="${{ steps.version.outputs.version }}"
if [ "$TAG" = "auto" ]; then
if [[ "$VERSION" == *-* ]]; then
TAG="beta"
else
TAG="latest"
fi
fi
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
- name: Publish to npm
run: npm publish --provenance --tag "${{ steps.publish_tag.outputs.tag }}"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push version commit
run: git push origin HEAD:main
unpublish:
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.task == 'unpublish' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Validate unpublish confirmation and versions
run: |
if [ "${{ github.event.inputs.confirm_unpublish }}" != "UNPUBLISH" ]; then
echo "Set confirm_unpublish to UNPUBLISH to run unpublish task."
exit 1
fi
VERSIONS="${{ github.event.inputs.unpublish_versions }}"
if [ -z "$VERSIONS" ]; then
echo "No versions provided."
exit 1
fi
for VERSION in $(echo "$VERSIONS" | tr ',' ' '); do
if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+([-.][0-9A-Za-z.-]+)?$ ]]; then
echo "Invalid version: $VERSION"
exit 1
fi
done
- name: Unpublish selected versions
run: |
for VERSION in $(echo "${{ github.event.inputs.unpublish_versions }}" | tr ',' ' '); do
set +e
OUTPUT=$(bunx npm unpublish "made-refine@$VERSION" 2>&1)
STATUS=$?
set -e
echo "$OUTPUT"
if [ "$STATUS" -ne 0 ]; then
if echo "$OUTPUT" | grep -qiE "404|not found|is not in this registry|already unpublished"; then
echo "$VERSION already unpublished or not found"
else
echo "Failed to unpublish $VERSION"
exit "$STATUS"
fi
fi
done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}