-
Notifications
You must be signed in to change notification settings - Fork 12
43 lines (35 loc) · 1.19 KB
/
copy-build-to-d2-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Copy build to d2-ci
on:
push:
branches-ignore:
- master
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:
copy-to-d2-ci:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
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
run: yarn pack --filename output.tgz && tar -xzf output.tgz
- name: Copy package to d2-ci
uses: dhis2/deploy-build@master
with:
github-token: ${{ secrets.DHIS2_BOT_GITHUB_TOKEN }}