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 f589eb7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compare-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ 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" >> $GITHUB_OUTPUT
1 change: 0 additions & 1 deletion .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
deploy:
name: Deploy @msw-devtools/demo
needs: compare-version
if: needs.compare-version.outputs.has_changed == 'true'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
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 f589eb7

Please sign in to comment.