Skip to content

change path

change path #25

Workflow file for this run

name: predict
on:
push:
branches:
- master
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
defaults:
run:
# GitHub Actions run without a TTY device. This is a workaround to get one,
# based on https://github.com/actions/runner/issues/241#issuecomment-2019042651
shell: 'script --return --quiet --log-out /dev/null --command "bash -e {0}"'
jobs:
inference:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Start container
uses: hoverkraft-tech/[email protected]
with:
compose-file: "./compose-prod.yml"
- name: Run inference
run: docker exec -it ocr-pdf bash predict.sh
- name: Save predictions
id: commit
uses: EndBug/add-and-commit@v9
with:
add: "-- *.pdf"
message: "enhanced pdfs"