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 f55777b
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,21 @@ 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')" >> $GITHUB_OUTPUT
- name: Publish to npm
if: steps.compare-versions.outputs.should-publish == 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN}" > ~/.npmrc
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > .npmrc
npm publish --access public

0 comments on commit f55777b

Please sign in to comment.