notyim/notyim

View on GitHub
.github/workflows/dockerimage.yml

Summary

Maintainability
Test Coverage
name: Docker Image CI

on: [push]

jobs:

  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Build the Docker image
      run: docker build . --file Dockerfile --tag notyim/notyim:$GITHUB_SHA
    - name: Push the docker image
      run: Will push later on