-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (49 loc) · 1.36 KB
/
frontend.yaml
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
name: Frontend CI workflow
on:
push:
paths:
- "frontend/**"
- ".github/workflows/frontend.yaml"
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Use Node.js 20.x and cache dependencies
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run build
build-container:
if: github.ref == 'refs/heads/main'
needs:
- build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Login to Yandex Cloud Container Registry
id: login-cr
uses: yc-actions/yc-cr-login@v2
with:
yc-sa-json-credentials: ${{ secrets.YANDEX_SA_KEY }}
- run: |
echo "Packaging docker image ..."
tag="${DOCKER_REGISTRY}/app:${{ github.sha }}"
docker build -t $tag -t ${DOCKER_REGISTRY}/app:latest .
docker push ${DOCKER_REGISTRY}/app --all-tags
env:
NEXT_PUBLIC_API_URL: https://api.afana-propdoc.ru
DOCKER_REGISTRY: cr.yandex/crpc50gkvq2bp251sfgb