Skip to content

Commit 1494579

Browse files
committed
Adding workflow to build and publish container image, refs #59; updated maintainer in Dockerfile
1 parent 64a0353 commit 1494579

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build and publish
2+
3+
on:
4+
push:
5+
branches:
6+
- "v3-dev" # Running this workflow only for develop branch
7+
8+
jobs:
9+
build-and-publish-head:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/[email protected]
14+
15+
- name: Build and publish "head" Docker image
16+
uses: VaultVulp/[email protected]
17+
with:
18+
github-token: ${{ secrets.GV_IMAGE_BUILD }}
19+
image-name: mitre/growthviz
20+
image-tag: v3

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM jupyter/scipy-notebook
22

3-
LABEL maintainer="Robi Scalfani <rscalfani@mitre.org>"
3+
LABEL maintainer="Daniel Chudnov <dlchudnov@mitre.org>"
44

55
COPY LICENSE /LICENSE
66
COPY README.md /README.md

0 commit comments

Comments
 (0)