Skip to main content
Module

x/deno_books/.build.yml

Access OpenLibrary's API with Deno.
Latest
File
image: alpine/edgepackages: - denosecrets: - 0323bc6f-a046-4b96-8496-2bac6e7ee107sources: - git+ssh://git@git.sr.ht/~timharek/deno-booksenvironment: DIR: deno-bookstriggers: - action: email condition: failure to: tim@harek.notasks: - test: | cd $DIR deno task check deno task test - check_release: | cd $DIR if [ "$(git rev-parse origin/main)" != "$(git rev-parse HEAD)" ]; then \ complete-build; \ fi - mirror: | cd $DIR git remote add github git@github.com:timharek/deno-books.git ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts git push github main if [ "$(git describe --exact-match --tags HEAD)" ]; then \ git push --tags github; \ fi