Skip to content

Commit

Permalink
publish to github package repo on new version
Browse files Browse the repository at this point in the history
  • Loading branch information
CluEleSsUK committed Feb 5, 2024
1 parent 0cae10f commit 14c75ed
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
30 changes: 24 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,35 @@ jobs:
with:
node-version: latest

- run: npm ci
- run: npm run compile
- run: npm run lint
- run: npm test
- name: Install dependencies
run: npm ci

- name: Compile the typescript
run: npm run compile

- name: Lint the code
run: npm run lint

- name: Run the tests
run: npm test

- name: Check for version change
run: |
[ "$(git show head^:package.json | jq .version)" = "$(cat package.json| jq .version)" ] && echo "::set-output name=version_changed::true" || echo "::set-output name=version_changed::false"
- name: Copy relevant documentation into the build folder
if: steps.version-check.outputs.version_changed == 'true'
run: cp package.json README.md LICENSE-APACHE LICENSE-MIT ./build
- name: publish to npmjs

- name: Publish to npmjs
uses: JS-DevTools/npm-publish@v1
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' && steps.version-check.outputs.version_changed == 'true'
with:
token: ${{ secrets.NPM_TOKEN }}
package: build/package.json
# don't try and deploy if versions haven't changed
check-version: true

- name: Publish to github
if: github.ref == 'refs/heads/master' && steps.version-check.outputs.version_changed == 'true'
run: npm run publish:github
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"clean": "rm -rf ./build/* && rm -rf lib/version.ts",
"precompile": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > lib/version.ts",
"compile": "npm run precompile && tsc --project tsconfig.json",
"publish:github": "npm publish --registry https://npm.pkg.github.com",
"test": "jest --verbose ./test/**.test.ts",
"lint": "eslint ./{lib,test}/*.ts",
"lint:fix": "eslint ./{lib,test}/*.ts --fix"
Expand Down

0 comments on commit 14c75ed

Please sign in to comment.