hippofish/.github/workflows/dockerimage.yml
2022-02-09 22:03:05 +09:00

14 lines
234 B
YAML

name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)