1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-09-18 18:30:10 +00:00

Compare commits

..

No commits in common. "d7c94edc6193a1045d84317cd2a93dfa4d223cf8" and "8f2a28e650bbaef014bd234486b88894ffe2c046" have entirely different histories.

2 changed files with 10 additions and 7 deletions

View File

@ -45,9 +45,6 @@ type: docker
steps: steps:
- name: build-deploy - name: build-deploy
image: appleboy/drone-ssh image: appleboy/drone-ssh
environment:
BUILDRONE_KEY:
from_secret: BUILDRONE_KEY
settings: settings:
host: host:
from_secret: ssh2_host from_secret: ssh2_host
@ -55,8 +52,6 @@ steps:
from_secret: ssh2_username from_secret: ssh2_username
port: port:
from_secret: ssh2_port from_secret: ssh2_port
envs:
- buildrone_key
key: key:
from_secret: ssh2_key from_secret: ssh2_key
command_timeout: 50m command_timeout: 50m
@ -64,11 +59,15 @@ steps:
- /mnt/buildx/jfa-go/build.sh stable - /mnt/buildx/jfa-go/build.sh stable
- wget https://builds.hrfee.pw/upload.py -O /mnt/buildx/jfa-go/jfa-go/upload.py - wget https://builds.hrfee.pw/upload.py -O /mnt/buildx/jfa-go/jfa-go/upload.py
- pip3 install requests - pip3 install requests
- bash -c 'cd /mnt/buildx/jfa-go/jfa-go && python3 upload.py https://builds.hrfee.pw hrfee jfa-go --tag docker-stable=true' - bash -c 'cd /mnt/buildx/jfa-go/jfa-go && BUILDRONE_KEY=$(cat /mnt/buildx/jfa-go/key) python3 upload.py https://builds.hrfee.pw hrfee jfa-go --tag docker-stable=true'
- rm -f /mnt/buildx/jfa-go/jfa-go/upload.py - rm -f /mnt/buildx/jfa-go/jfa-go/upload.py
trigger: trigger:
event: event:
- tag - tag
volumes:
- name: ssh_key
host:
path: /root/.ssh/docker-build
--- ---
name: jfa-go-git name: jfa-go-git
kind: pipeline kind: pipeline
@ -153,6 +152,10 @@ trigger:
exclude: exclude:
- pull_request - pull_request
volumes:
- name: ssh_key
host:
path: /root/.ssh/docker-build
--- ---
name: jfa-go-pr name: jfa-go-pr
kind: pipeline kind: pipeline

View File

@ -628,7 +628,7 @@ func flagPassed(name string) (found bool) {
} }
// @title jfa-go internal API // @title jfa-go internal API
// @version 0.5.1 // @version 0.4.0
// @description API for the jfa-go frontend // @description API for the jfa-go frontend
// @contact.name Harvey Tindall // @contact.name Harvey Tindall
// @contact.email hrfee@hrfee.dev // @contact.email hrfee@hrfee.dev