Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/prereleases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,19 @@ jobs:
- name: Detect changed packages
id: changeset
run: |
pnpm exec changeset status --output /tmp/status.json
# Run changeset status, but don't fail if there are no changesets
# This allows the workflow to continue gracefully
pnpm exec changeset status --output /tmp/status.json || true

# Check if the status file was created
if [ -f /tmp/status.json ]; then
RELEASE_COUNT=$(jq '.releases | length' /tmp/status.json)
else
# If changeset failed (no changesets found), treat as 0 releases
RELEASE_COUNT=0
echo '{}' > /tmp/status.json
fi

RELEASE_COUNT=$(jq '.releases | length' /tmp/status.json)
echo "release_count=$RELEASE_COUNT" >> $GITHUB_OUTPUT
echo "Found $RELEASE_COUNT packages to release"

Expand Down
2 changes: 1 addition & 1 deletion packages/presets/docs/preset-nuxt.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This preset enables Server-Side Rendering (SSR) and Static Site Generation (SSG)
First, install the Azion package in your Nuxt.js project:

```bash
npm install azion
npm install @aziontech/presets
```

## Configuration SSR
Expand Down
2 changes: 1 addition & 1 deletion packages/presets/docs/preset-svelte.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This preset enables Server-Side Rendering (SSR) and Static Site Generation (SSG)
First, install the Azion package in your SvelteKit project:

```bash
npm install azion
npm install @aziontech/presets
```

## Configuration SSR
Expand Down
Loading