mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-11 01:57:19 +00:00
19 lines
303 B
YAML
19 lines
303 B
YAML
name: Docker Image CI
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
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
|