Simon Marsh
acf94dcba5
All checks were successful
continuous-integration/drone/push Build is passing
28 lines
475 B
YAML
28 lines
475 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: deploy
|
|
|
|
steps:
|
|
|
|
- name: stage
|
|
image: alpine
|
|
commands:
|
|
- tar -czf site.tar.gz -C site/ .
|
|
|
|
- name: upload artifacts
|
|
image: git.burble.dn42/burble.dn42/drone-gitea-pkg-plugin:latest
|
|
settings:
|
|
token:
|
|
from_secret: TOKEN
|
|
version: latest
|
|
artifact: site.tar.gz
|
|
package: elburb.dn42
|
|
owner: burble.dn42
|
|
|
|
---
|
|
kind: secret
|
|
name: TOKEN
|
|
get:
|
|
path: burble.dn42/kv/data/drone/git.burble.dn42
|
|
name: artifact-token |