fix: system / user setting for display name not respected in Org Unit… #1042
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'dhis2: publish (node)' | |
on: | |
push: | |
branches: | |
# match branches in: | |
# https://github.com/semantic-release/semantic-release/blob/master/docs/usage/configuration.md#branches | |
- master | |
- next | |
- next-major | |
- alpha | |
- beta | |
- '[0-9]+.x' | |
- '[0-9]+.x.x' | |
- '[0-9]+.[0-9]+.x' | |
env: | |
GIT_AUTHOR_NAME: '@dhis2-bot' | |
GIT_AUTHOR_EMAIL: '[email protected]' | |
GIT_COMMITTER_NAME: '@dhis2-bot' | |
GIT_COMMITTER_EMAIL: '[email protected]' | |
NPM_TOKEN: ${{secrets.DHIS2_BOT_NPM_TOKEN}} | |
GH_TOKEN: ${{secrets.DHIS2_BOT_GITHUB_TOKEN}} | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{env.GH_TOKEN}} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test | |
- name: Publish to NPM | |
run: npx @dhis2/cli-utils release --publish npm | |
env: | |
CI: true |