Skip to content

Commit

Permalink
bump demo for test
Browse files Browse the repository at this point in the history
  • Loading branch information
vkruglikov committed Jan 6, 2025
1 parent 0a477ca commit 39579ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/compare-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ jobs:
run: |
CURRENT_VERSION=$(jq -r '.version' current_package.json)
PREVIOUS_VERSION=$(jq -r '.version' previous_package.json)
HAS_CHANGED="false"
HAS_CHANGED=false
echo "Current version: $CURRENT_VERSION"
echo "Previous version: $PREVIOUS_VERSION"
if [ "$CURRENT_VERSION" != "$PREVIOUS_VERSION" ]; then
HAS_CHANGED="true"
HAS_CHANGED=true
fi
echo "has_changed=HAS_CHANGED" >> $GITHUB_ENV
echo "has_changed=\"$HAS_CHANGED\""
echo "has_changed=\"$HAS_CHANGED\"" >> $GITHUB_ENV
2 changes: 1 addition & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@msw-devtools/demo",
"version": "0.0.2",
"version": "0.0.3",
"private": true,
"author": "Valentin Kruglikov",
"license": "MIT",
Expand Down

0 comments on commit 39579ff

Please sign in to comment.