This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (49 loc) · 1.46 KB
/
angularjs.yml
File metadata and controls
54 lines (49 loc) · 1.46 KB
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
44
45
46
47
48
49
50
51
52
53
54
on: push
name: Build Angular JS
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Extract environment based on git branch name
shell: bash
run: |
case ${GITHUB_REF#refs/heads/} in
"master")
echo "##[set-output name=branch;]$(echo "production")"
;;
"testing")
echo "##[set-output name=branch;]$(echo "testing")"
;;
*)
echo "##[set-output name=branch;]$(echo "development")"
;;
esac
id: extract_branch
- name: npm install and npm run build
run: |
cd $GITHUB_WORKSPACE
rm -rf node_modules && npm install
rm -rf dist; npm run-script build-prod
env:
DH_ENV: ${{ steps.extract_branch.outputs.branch }}
- uses: actions/upload-artifact@v2
with:
name: build
path: ${{ github.workspace }}/dist/