Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/update-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
node-version: 20.x
cache: 'npm'

- name: Update @zenstackhq packages to next
- name: Update @zenstackhq packages to latest
if: steps.check-package.outputs.exists == 'true'
run: |
# Get all @zenstackhq packages in the repo
Expand All @@ -89,10 +89,10 @@ jobs:
echo "Updating packages in ${{ matrix.repo }}:"
echo "$PACKAGES"

# Update each package to next tag
# Update each package to latest tag
for pkg in $PACKAGES; do
echo "Updating $pkg to next"
npm install "$pkg@next"
echo "Updating $pkg to latest"
npm install "$pkg@latest"
done

# Finally run generate
Expand All @@ -111,5 +111,5 @@ jobs:
fi

git add .
git commit -m "chore: update @zenstackhq packages to next release"
git commit -m "chore: update @zenstackhq packages to latest release"
git push
Loading