-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 1.02 KB
/
build-and-deploy.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
name: Build and deploy application
on:
push:
branches:
- main
- build-action-fixes
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to container registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Setup node.js
uses: actions/setup-node@v2
with:
node-version: '14.15.3'
- name: Install dependencies
run: npm install
- name: Build application
run: npm run build
- name: Install pack CLI
uses: buildpacks/github-actions/[email protected]
- name: Build image
run: pack build ${{ secrets.REGISTRY }}/basic_chess_ai:latest --builder paketobuildpacks/builder-jammy-base:latest --buildpack gcr.io/paketo-buildpacks/nginx --env BP_WEB_SERVER=nginx
- name: Push image to registry
run: docker push ${{ secrets.REGISTRY }}/basic_chess_ai:latest