-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (45 loc) · 1.32 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
name: Ci and Cd
on:
push:
branches:
- develop
- main
jobs:
ci:
name: Setup nodejs
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: Go to project folder
run: ll
- name: Go to project folder
run: cd project
- name: Print working dir
run: pwd
# - name: Install dependencies
# run: npm install
# - name: Linting
# run: npm run lint
# - name: Build project
# run: npm run build
# cd:
# name: CD processes
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# - name: Install Docker
# uses: docker/setup-buildx-action@v1
# - name: Go to project directory
# run: cd project
# - name: Login into docker hub
# run: docker login -u ${{secrets.DOCKER_USERNAME}} -p ${{secrets.DOCKER_PASSWORD}}
# - name: Build history service application, and deploy to dockerhub
# run: |
# docker build -t portofolio:${{secrets.DOCKER_TAGS_APP}} .
# docker push portofolio:${{secrets.DOCKER_TAGS_APP}} ${{secrets.DOCKER_USERNAME}}