mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 00:46:30 +00:00
[docs] Removes dot prefix from pipeline configuration filenames (#4105)
This commit is contained in:
parent
b1cf44ae0f
commit
57a22235d1
1 changed files with 8 additions and 8 deletions
|
@ -23,13 +23,13 @@ If you still need to pass artifacts between the workflows you need use some stor
|
|||
|
||||
```bash
|
||||
.woodpecker/
|
||||
├── .build.yaml
|
||||
├── .deploy.yaml
|
||||
├── .lint.yaml
|
||||
└── .test.yaml
|
||||
├── build.yaml
|
||||
├── deploy.yaml
|
||||
├── lint.yaml
|
||||
└── test.yaml
|
||||
```
|
||||
|
||||
```yaml title=".woodpecker/.build.yaml"
|
||||
```yaml title=".woodpecker/build.yaml"
|
||||
steps:
|
||||
- name: build
|
||||
image: debian:stable-slim
|
||||
|
@ -38,7 +38,7 @@ steps:
|
|||
- sleep 5
|
||||
```
|
||||
|
||||
```yaml title=".woodpecker/.deploy.yaml"
|
||||
```yaml title=".woodpecker/deploy.yaml"
|
||||
steps:
|
||||
- name: deploy
|
||||
image: debian:stable-slim
|
||||
|
@ -51,7 +51,7 @@ depends_on:
|
|||
- test
|
||||
```
|
||||
|
||||
```yaml title=".woodpecker/.test.yaml"
|
||||
```yaml title=".woodpecker/test.yaml"
|
||||
steps:
|
||||
- name: test
|
||||
image: debian:stable-slim
|
||||
|
@ -63,7 +63,7 @@ depends_on:
|
|||
- build
|
||||
```
|
||||
|
||||
```yaml title=".woodpecker/.lint.yaml"
|
||||
```yaml title=".woodpecker/lint.yaml"
|
||||
steps:
|
||||
- name: lint
|
||||
image: debian:stable-slim
|
||||
|
|
Loading…
Reference in a new issue