Skip to content

Commit

Permalink
🐛 script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matnabru committed Jul 28, 2023
1 parent 7a04011 commit 16b67b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: check-users-version
run: |
CURRENT_VERSION=$(npm show gei-users version)
NEW_VERSION=$(node -p "require('./packages/gei-users/package.json').version")
NEW_VERSION=$(node -p "require('./packages/integrations/gei-users/package.json').version")
if [ "$CURRENT_VERSION" != "$NEW_VERSION" ]
then
echo "::set-output name=updated::true"
Expand All @@ -38,7 +38,7 @@ jobs:
id: check-rest-version
run: |
CURRENT_VERSION=$(npm show gei-rest version)
NEW_VERSION=$(node -p "require('./packages/gei-rest/package.json').version")
NEW_VERSION=$(node -p "require('./packages/integrations/gei-rest/package.json').version")
if [ "$CURRENT_VERSION" != "$NEW_VERSION" ]
then
echo "::set-output name=updated::true"
Expand All @@ -56,7 +56,7 @@ jobs:
id: check-s3-version
run: |
CURRENT_VERSION=$(npm show gei-s3 version)
NEW_VERSION=$(node -p "require('./packages/gei-s3/package.json').version")
NEW_VERSION=$(node -p "require('./packages/integrations/gei-s3/package.json').version")
if [ "$CURRENT_VERSION" != "$NEW_VERSION" ]
then
echo "::set-output name=updated::true"
Expand All @@ -74,7 +74,7 @@ jobs:
id: check-crud-version
run: |
CURRENT_VERSION=$(npm show gei-crud version)
NEW_VERSION=$(node -p "require('./packages/gei-crud/package.json').version")
NEW_VERSION=$(node -p "require('./packages/integrations/gei-crud/package.json').version")
if [ "$CURRENT_VERSION" != "$NEW_VERSION" ]
then
echo "::set-output name=updated::true"
Expand Down

0 comments on commit 16b67b9

Please sign in to comment.