mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-04-12 04:19:25 -07:00
Compare commits
96 Commits
v0.7.1
...
af74102964
| Author | SHA1 | Date | |
|---|---|---|---|
|
af74102964
|
|||
|
bae2a49673
|
|||
|
1342393035
|
|||
|
9d109de8db
|
|||
|
bedeee22f5
|
|||
|
1267085306
|
|||
|
0ee150ed91
|
|||
|
3e5671270e
|
|||
|
24667ad6c9
|
|||
|
42028d0a4d
|
|||
|
4a01cebca6
|
|||
|
3995c396f8
|
|||
|
544cd8aaa0
|
|||
|
1932d2e25e
|
|||
|
2258ededbd
|
|||
|
64a88020c9
|
|||
|
0ea1746123
|
|||
|
59fa3b427d
|
|||
|
ff95934f07
|
|||
|
c27ef90046
|
|||
|
34ba602405
|
|||
|
ecb4b07f43
|
|||
|
1227706ac9
|
|||
|
9ad3ccfa38
|
|||
|
20f53c0b70
|
|||
|
72d78ba1ca
|
|||
|
43a0d11446
|
|||
|
1b5f0c6999
|
|||
|
886c6ef1d7
|
|||
|
f2d6c70019
|
|||
|
274b0619ac
|
|||
|
a954f62f55
|
|||
|
4d96ebf5c0
|
|||
|
7a0d7a488b
|
|||
|
f916b65d7f
|
|||
|
36627bf87d
|
|||
|
ad1f66a842
|
|||
|
f4cce31d4a
|
|||
| ec56970646 | |||
|
48f10dbb03
|
|||
|
1cb129b0b7
|
|||
|
af1505fbe6
|
|||
|
97126caf4e
|
|||
|
a0015dc75c
|
|||
|
61e1621137
|
|||
|
a5b1c0509d
|
|||
|
e694963426
|
|||
|
a69254f976
|
|||
|
a1348cf8e4
|
|||
|
f9b582582b
|
|||
|
8f39416ff5
|
|||
|
ecb41a490b
|
|||
|
b061b265c2
|
|||
|
f2b3af17d7
|
|||
|
5698121996
|
|||
|
f8e2ae4887
|
|||
|
08a5401a7d
|
|||
|
55ee12e87f
|
|||
|
a5a6426fe1
|
|||
|
75f2c212c7
|
|||
|
3dd337f518
|
|||
|
94ec28b48c
|
|||
|
078792e0b2
|
|||
|
390ae1b2f2
|
|||
|
11710f20db
|
|||
|
de574c04bd
|
|||
|
a9e33618e7
|
|||
|
77c35c770d
|
|||
|
64e9821e7a
|
|||
|
5c529802c6
|
|||
|
8123a145c0
|
|||
|
659118c20c
|
|||
|
929159bba5
|
|||
|
a317019bb9
|
|||
|
5767667d51
|
|||
|
a1f30fd482
|
|||
|
5a30446809
|
|||
|
6634255f43
|
|||
|
a3ed8dcf3d
|
|||
|
92c1557e46
|
|||
|
04682a02cc
|
|||
|
650e95cdc3
|
|||
|
46fbea902a
|
|||
|
93811ebfde
|
|||
|
74544d79a7
|
|||
|
536f0a1315
|
|||
|
ff2d9141bc
|
|||
|
249a7cada8
|
|||
|
9530445a95
|
|||
|
2d87dae6cc
|
|||
|
0f44107beb
|
|||
|
950263bd66
|
|||
|
26fb5b4162
|
|||
|
ffe5c6e1c6
|
|||
|
fe8bb167c4
|
|||
|
cc5d270b8e
|
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@@ -334,14 +334,6 @@ jobs:
|
|||||||
id: version
|
id: version
|
||||||
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
|
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Build changelog artifacts for release
|
|
||||||
run: |
|
|
||||||
if find changes -maxdepth 1 -name '*.md' -not -name README.md -print -quit | grep -q .; then
|
|
||||||
bun run changelog:build --version "${{ steps.version.outputs.VERSION }}"
|
|
||||||
else
|
|
||||||
echo "No pending changelog fragments found."
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Verify changelog is ready for tagged release
|
- name: Verify changelog is ready for tagged release
|
||||||
run: bun run changelog:check --version "${{ steps.version.outputs.VERSION }}"
|
run: bun run changelog:check --version "${{ steps.version.outputs.VERSION }}"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "subminer",
|
"name": "subminer",
|
||||||
"version": "0.7.1",
|
"version": "0.7.0",
|
||||||
"description": "All-in-one sentence mining overlay with AnkiConnect and dictionary integration",
|
"description": "All-in-one sentence mining overlay with AnkiConnect and dictionary integration",
|
||||||
"packageManager": "bun@1.3.5",
|
"packageManager": "bun@1.3.5",
|
||||||
"main": "dist/main-entry.js",
|
"main": "dist/main-entry.js",
|
||||||
|
|||||||
@@ -24,11 +24,6 @@ test('release workflow verifies a committed changelog section before publish', (
|
|||||||
assert.match(releaseWorkflow, /bun run changelog:check/);
|
assert.match(releaseWorkflow, /bun run changelog:check/);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('release workflow builds changelog artifacts when fragments are pending', () => {
|
|
||||||
assert.match(releaseWorkflow, /Build changelog artifacts for release/);
|
|
||||||
assert.match(releaseWorkflow, /changelog:build --version/);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('release workflow verifies generated config examples before packaging artifacts', () => {
|
test('release workflow verifies generated config examples before packaging artifacts', () => {
|
||||||
assert.match(releaseWorkflow, /bun run verify:config-example/);
|
assert.match(releaseWorkflow, /bun run verify:config-example/);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user