Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno_books/.build.yml

API client for OpenLibrary's API for searching books, authors etc.
Latest
File
image: alpine/edgepackages: - denosecrets: - 0323bc6f-a046-4b96-8496-2bac6e7ee107 - 6a295705-4fb6-451c-990c-9a12b0aa0dc2environment: GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=notriggers: - action: email condition: failure to: tim@harek.notasks: - setup: | echo 'cd openlibrary' >> ~/.buildenv - test: | deno task check deno task test - mirror: | git push --force --mirror git@github.com:timharek/openlibrary - check_release: | tag=$(git describe --exact-match --tags HEAD 2>/dev/null || true) if [ -z "$tag" ]; then echo "Current commit is not a tag: not a new release" complete-build fi - new_release: | set +x export JSR_API=$(cat ~/jsr_timharek) deno publish --allow-slow-types --token $JSR_API set -x