Skip to content

Commit

Permalink
Add GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cshcwu committed Dec 12, 2023
1 parent 6623980 commit 38e4004
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-random-data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docker Build with Random Data

on:
push:
branches: [ main ]

jobs:
build-and-run-random-data:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build Docker Image with Random Data
run: docker build --tag cohortingtool/webapp:random --build-arg random=true .

- name: Run Docker Container
run: docker run --name cogstackcohort-random -d -p 3000:3000 cohortingtool/webapp:random
19 changes: 19 additions & 0 deletions .github/workflows/docker-real-data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Docker Build with Real Data

on:
push:
branches: [ main ]

jobs:
build-and-run-real-data:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build Docker Image with Real Data
run: docker build --tag cohortingtool/webapp .

- name: Run Docker Container
run: docker run --name cogstackcohort -d -p 3000:3000 cohortingtool/webapp

0 comments on commit 38e4004

Please sign in to comment.