Skip to content

Commit a936130

Browse files
authored
Merge pull request #8 from ProverCoderAI/main
Sync
2 parents a6ff21d + 61c144b commit a936130

3 files changed

Lines changed: 27 additions & 5 deletions

File tree

.github/workflows/snapshot.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,30 @@ jobs:
2323
run: pnpm build
2424
- name: Create snapshot
2525
id: snapshot
26-
continue-on-error: true
2726
env:
2827
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29-
run: pnpx pkg-pr-new@0.0.24 publish --pnpm --comment=off
28+
shell: bash
29+
run: |
30+
set +e
31+
pnpx pkg-pr-new@0.0.24 publish --pnpm --comment=off
32+
STATUS=$?
33+
if [ $STATUS -eq 0 ]; then
34+
echo "success=true" >> "$GITHUB_OUTPUT"
35+
else
36+
echo "success=false" >> "$GITHUB_OUTPUT"
37+
echo "pkg-pr-new failed (likely app not installed); falling back to artifacts."
38+
fi
39+
exit 0
3040
- name: Fallback snapshot artifacts
31-
if: steps.snapshot.outcome != 'success'
41+
if: steps.snapshot.outputs.success != 'true'
3242
shell: bash
3343
run: |
3444
set -euo pipefail
3545
mkdir -p artifacts
3646
cd packages/app
3747
npm pack --silent --pack-destination ../../artifacts
3848
- name: Upload snapshot artifacts
39-
if: steps.snapshot.outcome != 'success'
49+
if: steps.snapshot.outputs.success != 'true'
4050
uses: actions/upload-artifact@v4
4151
with:
4252
name: context-doc-snapshot

packages/app/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @prover-coder-ai/context-doc
22

3+
## 1.0.16
4+
5+
### Patch Changes
6+
7+
- chore: automated version bump
8+
9+
## 1.0.15
10+
11+
### Patch Changes
12+
13+
- chore: automated version bump
14+
315
## 1.0.14
416

517
### Patch Changes

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prover-coder-ai/context-doc",
3-
"version": "1.0.14",
3+
"version": "1.0.16",
44
"description": "Minimal Vite-powered TypeScript console starter using Effect",
55
"main": "dist/main.js",
66
"bin": {

0 commit comments

Comments
 (0)