Skip to content

fix: fixed the deletion of the devices and error handling #38

fix: fixed the deletion of the devices and error handling

fix: fixed the deletion of the devices and error handling #38

Workflow file for this run

name: DHIS2 development server deployment
on:
pull_request:
types:
- closed
branches:
- develop
jobs:
deploy:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.18.0
cache: yarn
- name: Install JS dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Deploy
run: yarn deploy:manager ${{ vars.DHIS2_PROXY }} --username ${{ secrets.DHIS2_USERNAME }}
env:
D2_PASSWORD: ${{ secrets.DHIS2_PASSWORD }}