Skip to content

Commit

Permalink
fix ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKhanj committed Sep 23, 2023
1 parent 3415c06 commit 5654ebf
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,17 @@ jobs:
- name: Install dependencies
run: npm install

- name: Get package.json version
id: get-version
run: |
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
- name: Get latest npm version
id: get-npm-version
run: |
echo "latest=$(npm show convconv version)" >> $GITHUB_OUTPUT
- name: Compare versions
id: compare-versions
run: |
echo "should-publish=$([[ $VERSION > $LATEST ]] && echo -n 'true' || echo -n 'false')" >> $GITHUB_OUTPUT
version=$(node -p "require('./package.json').version")
latest=$(npm show convconv version)
echo $version
echo $latest
echo "should-publish=$([[ $version > $latest ]] && echo -n 'true' || echo -n 'false')"
echo "should-publish=$([[ $version > $latest ]] && echo -n 'true' || echo -n 'false')" >> $GITHUB_OUTPUT
- name: Publish to npm
if: steps.compare-versions.outputs.should-publish == 'true'
Expand Down

0 comments on commit 5654ebf

Please sign in to comment.