mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-13 11:07:12 +00:00
65c1025546
Currently it's only building the last interim release so there's not much point rerunning it on each commit.
16 lines
272 B
YAML
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
|