Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel authored and Daniel committed Dec 27, 2021
1 parent dcab4f0 commit e0c5eeb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
branches:
- main

jobs:
build:
name: Docker Build
runs-on: ubuntu-20.04
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Build
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: false
tags: website:latest

0 comments on commit e0c5eeb

Please sign in to comment.