Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pablovilas committed Jun 9, 2024
1 parent b2014e0 commit bc2fcec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
id: release
run: |
VERSION_NUMBER=$(grep '"version"' package.json | cut -d '"' -f 4)
MAJOR_VERSION_NUMBER=$(echo "$VERSION_NUMBER" | cut -d '.' -f 1)
VERSION=$(echo "v$VERSION_NUMBER")
MAJOR_VERSION=$(echo "v$MAJOR_VERSION_NUMBER")
MAJOR_VERSION_NUMBER=$(cut -d '.' -f 1 <<< "$VERSION_NUMBER")
VERSION="v$VERSION_NUMBER"
MAJOR_VERSION="v$MAJOR_VERSION_NUMBER"
# Prepare code to upload
npm run all
Expand Down

0 comments on commit bc2fcec

Please sign in to comment.