chore: drop unused files
This commit is contained in:
parent
bb11ba640f
commit
0c899c8ae7
2 changed files with 0 additions and 137 deletions
96
.drone.yml
96
.drone.yml
|
@ -1,96 +0,0 @@
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: lint
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: helm lint
|
|
||||||
pull: always
|
|
||||||
image: alpine:3.17
|
|
||||||
commands:
|
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
|
||||||
- helm lint
|
|
||||||
|
|
||||||
- name: helm template
|
|
||||||
pull: always
|
|
||||||
image: alpine:3.17
|
|
||||||
commands:
|
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
|
||||||
- helm dependency update
|
|
||||||
- helm template --debug gitea-helm .
|
|
||||||
|
|
||||||
- name: helm unittests
|
|
||||||
pull: always
|
|
||||||
image: alpine:3.17
|
|
||||||
commands:
|
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing make helm git bash
|
|
||||||
- helm plugin install https://github.com/heyhabito/helm-unittest
|
|
||||||
- helm dependency update
|
|
||||||
- make unittests
|
|
||||||
|
|
||||||
- name: verify readme
|
|
||||||
pull: always
|
|
||||||
image: alpine:3.17
|
|
||||||
commands:
|
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing make npm git
|
|
||||||
- make readme
|
|
||||||
- git diff --exit-code --name-only README.md
|
|
||||||
|
|
||||||
- name: discord
|
|
||||||
pull: always
|
|
||||||
image: appleboy/drone-discord:1.2.4
|
|
||||||
environment:
|
|
||||||
DISCORD_WEBHOOK_ID:
|
|
||||||
from_secret: discord_webhook_id
|
|
||||||
DISCORD_WEBHOOK_TOKEN:
|
|
||||||
from_secret: discord_webhook_token
|
|
||||||
when:
|
|
||||||
status:
|
|
||||||
- changed
|
|
||||||
- failure
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: release-version
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: generate-chart
|
|
||||||
pull: always
|
|
||||||
image: alpine:3.17
|
|
||||||
commands:
|
|
||||||
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
|
||||||
- apk add --no-cache curl
|
|
||||||
- helm dependency update
|
|
||||||
- helm package --version "${DRONE_TAG##v}" ./
|
|
||||||
- mkdir gitea
|
|
||||||
- mv gitea*.tgz gitea/
|
|
||||||
- curl -L -o gitea/index.yaml https://dl.gitea.io/charts/index.yaml
|
|
||||||
- helm repo index gitea/ --url https://dl.gitea.io/charts --merge gitea/index.yaml
|
|
||||||
|
|
||||||
- name: upload-chart
|
|
||||||
pull: always
|
|
||||||
image: plugins/s3:latest
|
|
||||||
settings:
|
|
||||||
bucket: gitea-artifacts
|
|
||||||
endpoint: https://ams3.digitaloceanspaces.com
|
|
||||||
access_key:
|
|
||||||
from_secret: aws_access_key_id
|
|
||||||
secret_key:
|
|
||||||
from_secret: aws_secret_access_key
|
|
||||||
source: gitea/*
|
|
||||||
target: /charts
|
|
||||||
strip_prefix: gitea/
|
|
|
@ -1,41 +0,0 @@
|
||||||
<!--
|
|
||||||
Before you open the request please review the following guidelines and tips to help it be more easily integrated:
|
|
||||||
|
|
||||||
- Describe the scope of your change - i.e. what the change does.
|
|
||||||
- Describe any known limitations with your change.
|
|
||||||
- Please run any tests or examples that can exercise your modified code.
|
|
||||||
|
|
||||||
Thank you for contributing! We will try to review, test and integrate the change as soon as we can.
|
|
||||||
-->
|
|
||||||
|
|
||||||
### Description of the change
|
|
||||||
|
|
||||||
<!-- Describe the scope of your change - i.e. what the change does. -->
|
|
||||||
|
|
||||||
### Benefits
|
|
||||||
|
|
||||||
<!-- What benefits will be realized by the code change? -->
|
|
||||||
|
|
||||||
### Possible drawbacks
|
|
||||||
|
|
||||||
<!-- Describe any known limitations with your change -->
|
|
||||||
|
|
||||||
### Applicable issues
|
|
||||||
|
|
||||||
<!-- Enter any applicable Issues here (You can reference an issue using #). Please remove this section if there is no referenced issue. -->
|
|
||||||
- fixes #
|
|
||||||
|
|
||||||
### Additional information
|
|
||||||
|
|
||||||
<!-- If there's anything else that's important and relevant to your pull request, mention that information here. Please remove this section if it remains empty. -->
|
|
||||||
|
|
||||||
### ⚠ BREAKING
|
|
||||||
|
|
||||||
<!-- If there's a breaking change, please shortly describe in which way users are affected and how they can mitigate it. If there are no breakings, please remove this section. -->
|
|
||||||
|
|
||||||
### Checklist
|
|
||||||
|
|
||||||
<!-- [Place an '[X]' (no spaces) in all applicable fields. Please remove unrelated fields.] -->
|
|
||||||
|
|
||||||
- [ ] Parameters are documented in the `values.yaml` and added to the `README.md` using [readme-generator-for-helm](https://github.com/bitnami-labs/readme-generator-for-helm)
|
|
||||||
- [ ] Breaking changes are documented in the `README.md`
|
|
Loading…
Reference in a new issue