mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 22:43:03 +00:00
3ade5aeba9
* Initial progress on searching by URL. * Avoid rejections for error messages. * Handle some more rejections. * Fix build issues. * Remove detailed error messages. * Fix issue with built Docker image. * Add rate limit headers to all responses. * Remove unneeded dependency. * Limit URLs to 10MB.
45 lines
779 B
YAML
45 lines
779 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build-latest
|
|
image: plugins/docker
|
|
settings:
|
|
auto_tag: true
|
|
password:
|
|
from_secret: docker_password
|
|
registry: registry.huefox.com
|
|
repo: registry.huefox.com/fuzzysearch
|
|
username:
|
|
from_secret: docker_username
|
|
when:
|
|
branch:
|
|
- master
|
|
|
|
- name: build-branch
|
|
image: plugins/docker
|
|
settings:
|
|
password:
|
|
from_secret: docker_password
|
|
registry: registry.huefox.com
|
|
repo: registry.huefox.com/fuzzysearch
|
|
tags: ${DRONE_BRANCH}
|
|
username:
|
|
from_secret: docker_username
|
|
when:
|
|
branch:
|
|
exclude:
|
|
- master
|
|
|
|
---
|
|
kind: signature
|
|
hmac: c17d371c096be4b0544aad509cd58fa475e8737ac2c2dd77db5603044e3a5892
|
|
|
|
...
|