chore: fix more i18n imports #190
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: Copy build to d2-ci | |
on: | |
push: | |
branches-ignore: | |
- master | |
- next | |
- next-major | |
- alpha | |
- beta | |
- '[0-9]+.x' | |
- '[0-9]+.x.x' | |
- '[0-9]+.[0-9]+.x' | |
env: | |
GH_TOKEN: ${{secrets.DHIS2_BOT_GITHUB_TOKEN}} | |
jobs: | |
copy-to-d2-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{env.GH_TOKEN}} | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build package | |
run: yarn build | |
- name: Pack and unpack the build to a directory named 'package' | |
run: yarn pack --filename output.tgz && tar -xzf output.tgz | |
- name: Copy package to d2-ci | |
uses: dhis2/deploy-build@master | |
with: | |
build-dir: package | |
github-token: ${{env.GH_TOKEN}} |