This commit is contained in:
2023-04-19 13:33:07 +00:00
parent b76d5599d8
commit af432a7bfb
89 changed files with 5801 additions and 3322 deletions

54
.drone.yml Normal file
View File

@@ -0,0 +1,54 @@
kind: pipeline
type: docker
name: Publish docker next
clone:
depth: 1
steps:
- name: Build
image: plugins/docker
pull: if-not-exists
settings:
dockerfile: docker/Dockerfile
context: .
repo: git.yoshino-s.xyz/ds/ds-ui
registry: git.yoshino-s.xyz
username: yoshino-s
password:
from_secret: GITEA_TOKEN
tags: next
---
kind: pipeline
type: docker
name: Release
clone:
depth: 1
steps:
- name: Publish
image: plugins/gitea-release
pull: if-not-exists
settings:
api_key:
from_secret: GITEA_TOKEN
base_url: https://git.yoshino-s.xyz
- name: Publish Tag
image: plugins/docker
pull: if-not-exists
settings:
dockerfile: docker/Dockerfile
context: .
repo: git.yoshino-s.xyz/ds/ds-ui
registry: git.yoshino-s.xyz
username: yoshino-s
password:
from_secret: GITEA_TOKEN
tags:
- ${DRONE_TAG}
- latest
trigger:
event:
- tag