Skip to content

Commit

Permalink
ci: add docker image workflow for master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Data5tream committed Jun 26, 2023
1 parent 4ce9caa commit 0192caa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/latest-docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build latest image

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the image
run: docker build . --file Dockerfile --tag simple-status-page:latest

0 comments on commit 0192caa

Please sign in to comment.