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 eac8f0d
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,24 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

- 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)
- name: Publish to npm
echo "current branch version: $version, current upstream version: $latest"
echo "should-publish=$([[ $version > $latest ]] && echo -n 'true' || echo -n 'false')" >> $GITHUB_OUTPUT
- run: npm publish
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
npm publish --access public
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

0 comments on commit eac8f0d

Please sign in to comment.