2021-03-14 15:16:50 +00:00
|
|
|
name: Publish
|
2021-03-09 12:39:13 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-03-14 15:13:07 +00:00
|
|
|
branches: [ 'master' ]
|
2021-03-09 12:39:13 +00:00
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2021-04-14 11:38:31 +00:00
|
|
|
publish:
|
2021-03-09 12:39:13 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
LINGDOCS_DICTIONARY_URL: ${{ secrets.LINGDOCS_DICTIONARY_URL }}
|
2021-03-09 13:20:55 +00:00
|
|
|
LINGDOCS_NPM_TOKEN: ${{ secrets.LINGDOCS_NPM_TOKEN }}
|
2021-03-09 12:39:13 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2022-10-05 14:07:39 +00:00
|
|
|
node-version: 16
|
2021-03-14 15:13:07 +00:00
|
|
|
- name: Check if version has been updated
|
|
|
|
id: check
|
|
|
|
uses: EndBug/version-check@v1
|
2021-03-14 15:15:20 +00:00
|
|
|
with:
|
2021-03-14 15:23:55 +00:00
|
|
|
diff-search: true
|
2021-03-14 15:15:20 +00:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2021-03-14 15:13:07 +00:00
|
|
|
- name: Publish when version changed
|
|
|
|
if: steps.check.outputs.changed == 'true'
|
|
|
|
run: |
|
2022-10-08 16:58:17 +00:00
|
|
|
yarn install
|
|
|
|
cd src/lib
|
|
|
|
yarn install
|
|
|
|
cd ../components
|
2021-03-14 15:13:07 +00:00
|
|
|
yarn install
|
|
|
|
yarn build-library
|
|
|
|
yarn test
|
2022-10-08 16:50:46 +00:00
|
|
|
cd lib
|
|
|
|
npm publish
|
2021-03-14 15:13:07 +00:00
|
|
|
npm publish
|