-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (88 loc) · 2.91 KB
/
build.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: build
on:
push:
tags:
- 'v*.*.*'
branches:
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
node-version: 16
# Work around https://github.com/actions/checkout/issues/290
- run: git fetch --force --tags
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm install
- run: mkdir artifacts
- name: create tarball
run: |
GIT_DESCRIBE=$(git describe)
sed -i -e "s/%GIT_DESCRIBE%/$(git describe)/g" ./public/index.html
tar -czf artifacts/imbportal-${GIT_DESCRIBE}.tar.gz \
--transform "s/^\./imbportal-${GIT_DESCRIBE}/" \
--exclude=./artifacts \
--exclude=./.git \
.
- uses: actions/upload-artifact@v3
with:
name: release-artifacts
path: artifacts/imbportal-*.tar.gz
# creating docker image and pushing to harbor
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Log in to Harbor
uses: docker/login-action@v2
with:
registry: ${{ secrets.HARBOR_REGISTRY }}
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
- name: Extract tag
id: extract_tag
run: echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ secrets.HARBOR_REGISTRY }}/rcc-portals-a/apps-ipp:${{env.TAG}}
#cache-from: type=registry,ref=${{ secrets.HARBOR_REGISTRY }}/rcc-portals-a/apps-ipp:cache
#cache-to: type=registry,ref=${{ secrets.HARBOR_REGISTRY }}/rcc-portals-a/apps-ipp:cache,mode=max
#end
deploy:
needs: build
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: release-artifacts
path: dist
- uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: dist/*