25 lines
760 B
YAML
25 lines
760 B
YAML
|
name: "Codeberg pages deploy"
|
||
|
description: 'A drone plugin to deploy to codeberg pages. Basically takes a folder and pushes it to the "pages" branch in the same repo.'
|
||
|
runs:
|
||
|
using: "go"
|
||
|
main: "main.go"
|
||
|
inputs:
|
||
|
folder:
|
||
|
description: "The folder to deploy"
|
||
|
required: true
|
||
|
ssh_key:
|
||
|
description: "The private ssh key to use if pushing to an ssh remote"
|
||
|
required: false
|
||
|
git_remote:
|
||
|
description: "A custom git remote to push to"
|
||
|
required: false
|
||
|
git_branch:
|
||
|
description: "The branch to push to"
|
||
|
required: false
|
||
|
token:
|
||
|
description: "The token/password to use if pusing to a custom http remote"
|
||
|
required: false
|
||
|
username:
|
||
|
description: "The username to use if pusing to a custom http remote"
|
||
|
required: false
|