We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
other
Trying to use steps with the same name, pipeline fails or works wrong.
#3411 (comment):
be aware that steps now can have the same name
skip_clone: true steps: notification: depends_on: - build image: alpine commands: - echo 'Alright' build: image: alpine commands: - echo 'Build' build: image: alpine commands: - echo 'Test' package: image: alpine commands: - echo 'Package'
⬆️ pipeline with one build step works well.
build
server-same-name-map.log agent-same-name-map.log
skip_clone: true steps: - name: notification depends_on: - build image: alpine commands: - echo 'Alright' - name: build image: alpine commands: - echo 'Build' - name: build image: alpine commands: - echo 'Test' - name: package image: alpine commands: - echo 'Package'
server-same-name-array.log agent-same-name-array.log
step names must be unique
Woodpecker `next-75017ac7ca`, Gitea `1.22.3`, Postgres `16`, Kubernetes `v1.30.6+k3s1`
#3411 (comment) #3411 (comment)
next
The text was updated successfully, but these errors were encountered:
needs
detached
mkdir: can't create directory '/woodpecker/src/': Permission denied
The first pipeline on 2.7.1 works as second on next:
2.7.1
The second pipeline on 2.7.1 works the same way as on next.
Sorry, something went wrong.
No branches or pull requests
Component
other
Describe the bug
Trying to use steps with the same name, pipeline fails or works wrong.
#3411 (comment):
Steps to reproduce 1
⬆️ pipeline with one
build
step works well.server-same-name-map.log
agent-same-name-map.log
Steps to reproduce 2
build
step was run (second one with echo Test)server-same-name-array.log
agent-same-name-array.log
Expected behavior
step names must be unique
build
)System Info
Additional context
#3411 (comment)
#3411 (comment)
Validations
next
version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]The text was updated successfully, but these errors were encountered: