You've already forked DataMate
init datamate
This commit is contained in:
27
.github/workflows/docker-image-backend.yml
vendored
Normal file
27
.github/workflows/docker-image-backend.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Backend Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "develop_930" ]
|
||||
paths:
|
||||
- 'backend/**'
|
||||
- 'scripts/images/backend/**'
|
||||
- '.github/workflows/docker-image-backend.yml'
|
||||
pull_request:
|
||||
branches: [ "develop_930" ]
|
||||
paths:
|
||||
- 'backend/**'
|
||||
- 'scripts/images/backend/**'
|
||||
- '.github/workflows/docker-image-backend.yml'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build the Backend Docker image
|
||||
run: make build-backend
|
||||
27
.github/workflows/docker-image-frontend.yml
vendored
Normal file
27
.github/workflows/docker-image-frontend.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Frontend Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "develop_930" ]
|
||||
paths:
|
||||
- 'frontend/**'
|
||||
- 'scripts/images/frontend/**'
|
||||
- '.github/workflows/docker-image-frontend.yml'
|
||||
pull_request:
|
||||
branches: [ "develop_930" ]
|
||||
paths:
|
||||
- 'frontend/**'
|
||||
- 'scripts/images/frontend/**'
|
||||
- '.github/workflows/docker-image-frontend.yml'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build the Frontend Docker image
|
||||
run: make build-frontend
|
||||
Reference in New Issue
Block a user