forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (45 loc) · 1.13 KB
/
docker-unified.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
name: Frontend Workflow
on:
push:
branches:
- master
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
branches:
- master
paths-ignore:
- 'docs/**'
- '**.md'
workflow_dispatch:
branches:
- master
env:
DATAHUB_FRONTEND_IMAGE: 'oncasedevops/datahub-frontend-react'
jobs:
frontend_build:
name: Build and Push DataHub Frontend Docker Image
runs-on: ubuntu-latest
outputs:
image_tag: latest
image_name: ${{ env.DATAHUB_FRONTEND_IMAGE }}
steps:
- name: Check out the repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Image
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/datahub-frontend/Dockerfile
tags: ${{ env.DATAHUB_FRONTEND_IMAGE }}:latest
push: true