Skip to content

Build IIIF Manifests #15

Build IIIF Manifests

Build IIIF Manifests #15

Workflow file for this run

name: Build IIIF Manifests
on:
workflow_dispatch:
inputs:
index:
description: 'SSID to process (e.g. 35103808), leave blank to process all items'
required: false
default: ''
jobs:
build-and-run:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
with:
submodules: true
- name: Build Docker image
run: docker build . -t etl
- name: Run Docker Image
run: |
if [ -z "${{ github.event.inputs.index }}" ]; then
docker run etl
else
docker run etl -m imaginerio-etl.scripts.iiif -i ${{ github.event.inputs.index }}
fi