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

-18
This file was deleted.

.github/workflows/master.yml

+18
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/[email protected]
14+
- name: Build and Push Dockerfile
15+
uses: matootie/[email protected]
16+
with:
17+
imageName: ${{ github.event.repository.name }}-master
18+
accessToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)