Files
The-World-Is-Yours/.github/workflows/docker-image.yml
T
2022-04-11 23:41:56 +02:00

19 lines
300 B
YAML

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