Skip to content

Commit e71bee7

Browse files
authored
Merge pull request #532 from zenstackhq/dev
chore: update CI sample update script (#531)
2 parents 2966af1 + 0e14011 commit e71bee7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/update-samples.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
node-version: 20.x
6969
cache: 'npm'
7070

71-
- name: Update @zenstackhq packages to next
71+
- name: Update @zenstackhq packages to latest
7272
if: steps.check-package.outputs.exists == 'true'
7373
run: |
7474
# Get all @zenstackhq packages in the repo
@@ -89,10 +89,10 @@ jobs:
8989
echo "Updating packages in ${{ matrix.repo }}:"
9090
echo "$PACKAGES"
9191
92-
# Update each package to next tag
92+
# Update each package to latest tag
9393
for pkg in $PACKAGES; do
94-
echo "Updating $pkg to next"
95-
npm install "$pkg@next"
94+
echo "Updating $pkg to latest"
95+
npm install "$pkg@latest"
9696
done
9797
9898
# Finally run generate
@@ -111,5 +111,5 @@ jobs:
111111
fi
112112
113113
git add .
114-
git commit -m "chore: update @zenstackhq packages to next release"
114+
git commit -m "chore: update @zenstackhq packages to latest release"
115115
git push

0 commit comments

Comments
 (0)