-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (50 loc) · 1.23 KB
/
build_master.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: Build master
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Build TS
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm ci
- run: npm run compile
- uses: actions/upload-artifact@v2
with:
name: build
path: |
./lib/
package.json
package-lock.json
./public/
./docker/Dockerfile
./config/
build-docker:
runs-on: ubuntu-latest
name: Build docker image
needs: [build]
steps:
- uses: actions/download-artifact@v2
with:
name: build
- uses: docker/setup-buildx-action@v1
- name: login to dockerhub
uses: docker/login-action@v1
with:
username: creiger
password: ${{secrets.DOCKER_TOKEN}}
- run: mv ./docker/Dockerfile ./Dockerfile
- run: rm -rf ./docker
- name: Build docker image
uses: docker/build-push-action@v2
with:
context: .
tags: |
creiger/nhl-stats:latest
creiger/nhl-stats:1.0.0-${{github.run_number}}
push: true