Files
starter-workflows/ci/docker-image.yml
T

19 lines
319 B
YAML
Raw Normal View History

2020-03-17 11:17:19 +00:00
name: Docker Image CI
on:
push:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2024-04-25 16:52:34 +00:00
- uses: actions/checkout@v4
2020-03-17 11:17:19 +00:00
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)