-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·71 lines (57 loc) · 1.75 KB
/
cicd.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
name: Ci and Cd
on:
push:
branches:
- "*"
jobs:
linting:
name: Test and linting
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install nodejs
uses: actions/setup-node@v4
with:
node-version: 20.12.0
- name: Install dependencies
working-directory: ./project
run: npm install
- name: Linting
working-directory: ./project
run: npm run lint
build:
name: Push to docker hub
runs-on: ubuntu-22.04
needs: linting
if: ${{github.ref == 'refs/heads/main'}} || ${{github.ref == 'refs/heads/develop'}}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Linting Dockerfile
uses: hadolint/[email protected]
with:
dockerfile: project/Dockerfile
verbose: true
format: json
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login into docker hub
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build frontend app to dockerhub
env:
DOCKER_CONTENT_TRUST: 1
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:project"
push: true
tags: ${{secrets.DOCKER_USERNAME}}/portofolio:${{secrets.DOCKER_PORTOFOLIO_TAGS_APP}}
build-args:
VITE_SERVICE_ID=${{secrets.VITE_SERVICE_ID}}
VITE_PUBLIC_KEY=${{secrets.VITE_PUBLIC_KEY}}
VITE_TEMPLATE_ID=${{secrets.VITE_TEMPLATE_ID}}