Files
heritrix3/.github/workflows/docker-image.yml
T
Alex Osborne 65c1025546 Make the docker build manually triggered
Currently it's only building the last interim release so there's not much point rerunning it on each commit.
2021-12-13 14:06:25 +09:00

16 lines
272 B
YAML

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