diff --git a/.woodpecker/docs.yml b/.woodpecker/docs.yml index 14f498893..30467c029 100644 --- a/.woodpecker/docs.yml +++ b/.woodpecker/docs.yml @@ -19,6 +19,8 @@ pipeline: - ssh-keyscan -t rsa github.com >> $HOME/.ssh/known_hosts - echo "$BOT_PRIVATE_KEY" > $HOME/.ssh/id_rsa - chmod 0600 $HOME/.ssh/id_rsa + - git config --global user.email "woodpecker-bot@obermui.de" + - git config --global user.name "woodpecker-bot" - cd docs/ - yarn install --frozen-lockfile - yarn deploy diff --git a/README.md b/README.md index 11a294cbc..697eaaba0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A fork of the Drone CI system. [![Go Report Card](https://goreportcard.com/badge/github.com/woodpecker-ci/woodpecker)](https://goreportcard.com/report/github.com/woodpecker-ci/woodpecker) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![https://discord.gg/fcMQqSMXJy](https://img.shields.io/discord/838698813463724034.svg)](https://discord.gg/fcMQqSMXJy) -![woodpecker](docs/docs/images/woodpecker.png) +![woodpecker](docs/docs/woodpecker.png) ## .drone.yml @@ -89,7 +89,7 @@ pipeline: ## Documentation -https://woodpecker.laszlo.cloud +https://woodpecker-ci.github.io/ ## Who uses Woodpecker diff --git a/charts/README.md b/charts/README.md index d1930eb31..642e0ee26 100644 --- a/charts/README.md +++ b/charts/README.md @@ -1,6 +1,6 @@ # Woodpecker -[Woodpecker](https://woodpecker.laszlo.cloud/) is a fork of the Drone CI system version 0.8, right before the 1.0 release and license changes +[Woodpecker](https://woodpecker-ci.github.io/) is a fork of the Drone CI system version 0.8, right before the 1.0 release and license changes ## Installing Woodpecker server @@ -12,7 +12,7 @@ kubectl create secret generic drone-secret \ --from-literal=DRONE_SECRET=$(openssl rand -hex 32) ``` -[GitHub](https://woodpecker.laszlo.cloud/administration/github/) +[GitHub](https://woodpecker-ci.github.io/docs/administration) ``` kubectl create secret generic drone-github-client \ diff --git a/cmd/drone-server/flags.go b/cmd/drone-server/flags.go index f69d7e295..b3c6a011b 100644 --- a/cmd/drone-server/flags.go +++ b/cmd/drone-server/flags.go @@ -99,7 +99,7 @@ var flags = []cli.Flag{ EnvVar: "DRONE_DOCS,WOODPECKER_DOCS", Name: "docs", Usage: "link to user documentation", - Value: "https://woodpecker.laszlo.cloud", + Value: "https://woodpecker-ci.github.io/", }, cli.DurationFlag{ EnvVar: "DRONE_SESSION_EXPIRES,WOODPECKER_SESSION_EXPIRES",