-
Notifications
You must be signed in to change notification settings - Fork 14
59 lines (46 loc) · 1.3 KB
/
build-artifacts.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Create Build Artifacts
env:
CI: true
on:
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
registry-url: 'https://registry.npmjs.org/'
- run: yarn --frozen-lockfile
- name: Bump package.json
run: |
npm --no-git-tag-version version $(npm show . version)-internal.$(git rev-parse --short HEAD)
# create env file from secrets
- run: echo "${{ secrets.ENV_FILE }}" > .env
- run: yarn tsc && yarn lint
- run: yarn build
# remove .env so that we don't include in build_artifacts.zip file
- run: rm -rf .env
- uses: actions/upload-artifact@v2
with:
name: build_artifacts
path: |
*
!src
!.husky
!.github
!.git
!node_modules
# we need to save PR number to some file artifact so that we can fetch it in publish-internal workflow
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/PR_NUMBER
- uses: actions/upload-artifact@v2
with:
name: pr
path: pr/