mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00

Update .github/workflows/build_run.yml Co-authored-by: David Stotijn <dstotijn@gmail.com> Update .github/workflows/go.yml Co-authored-by: David Stotijn <dstotijn@gmail.com> Update .github/workflows/build_run.yml Co-authored-by: David Stotijn <dstotijn@gmail.com> Update .github/workflows/go.yml Co-authored-by: David Stotijn <dstotijn@gmail.com> Update .github/workflows/go.yml Co-authored-by: David Stotijn <dstotijn@gmail.com> Co-authored-by: David Stotijn <dstotijn@gmail.com>
15 lines
234 B
YAML
15 lines
234 B
YAML
name: Docker Image CI
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag hetty:$(date +%s)
|