Skip to content

Commit 422622a

Browse files
committed
Add GitHub Action support for Docker builds
1 parent 37fcf6c commit 422622a

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/dockerimage.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/master.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Master CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2.0.0
14+
- name: Build and Push Dockerfile
15+
uses: matootie/github-docker@v2.0.0
16+
with:
17+
imageName: ${{ github.event.repository.name }}-master
18+
accessToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)