forked from kataras/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (36 loc) · 856 Bytes
/
docker-image.yml
File metadata and controls
48 lines (36 loc) · 856 Bytes
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
name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
name: Deploy New Design
on:
push:
branches:
- main # Trigger deployment on push to the main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '16'
- name: Install Dependencies
run: npm install
- name: Build Project
run: npm run build
- name: Deploy to Hosting Service
env:
API_KEY: ${{ secrets.DEPLOY_KEY }}
run: npm run deploy