mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-09-25 19:35:07 +00:00
[docs] Removes dot prefix from pipeline configuration filenames (#4105)
This commit is contained in:
@@ -23,13 +23,13 @@ If you still need to pass artifacts between the workflows you need use some stor
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
.woodpecker/
|
.woodpecker/
|
||||||
├── .build.yaml
|
├── build.yaml
|
||||||
├── .deploy.yaml
|
├── deploy.yaml
|
||||||
├── .lint.yaml
|
├── lint.yaml
|
||||||
└── .test.yaml
|
└── test.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
```yaml title=".woodpecker/.build.yaml"
|
```yaml title=".woodpecker/build.yaml"
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: debian:stable-slim
|
image: debian:stable-slim
|
||||||
@@ -38,7 +38,7 @@ steps:
|
|||||||
- sleep 5
|
- sleep 5
|
||||||
```
|
```
|
||||||
|
|
||||||
```yaml title=".woodpecker/.deploy.yaml"
|
```yaml title=".woodpecker/deploy.yaml"
|
||||||
steps:
|
steps:
|
||||||
- name: deploy
|
- name: deploy
|
||||||
image: debian:stable-slim
|
image: debian:stable-slim
|
||||||
@@ -51,7 +51,7 @@ depends_on:
|
|||||||
- test
|
- test
|
||||||
```
|
```
|
||||||
|
|
||||||
```yaml title=".woodpecker/.test.yaml"
|
```yaml title=".woodpecker/test.yaml"
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: test
|
||||||
image: debian:stable-slim
|
image: debian:stable-slim
|
||||||
@@ -63,7 +63,7 @@ depends_on:
|
|||||||
- build
|
- build
|
||||||
```
|
```
|
||||||
|
|
||||||
```yaml title=".woodpecker/.lint.yaml"
|
```yaml title=".woodpecker/lint.yaml"
|
||||||
steps:
|
steps:
|
||||||
- name: lint
|
- name: lint
|
||||||
image: debian:stable-slim
|
image: debian:stable-slim
|
||||||
|
Reference in New Issue
Block a user