ci: use list style syntax for steps
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/build-package Pipeline was successful Details
ci/woodpecker/push/docs Pipeline was successful Details
ci/woodpecker/push/notify Pipeline was successful Details

This commit is contained in:
Robert Kaussow 2024-01-16 16:26:51 +01:00
parent e8b99410ca
commit 67d610b917
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
4 changed files with 9 additions and 9 deletions

View File

@ -6,25 +6,25 @@ when:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
steps: steps:
package: - name: package
image: quay.io/thegeeklab/alpine-tools image: quay.io/thegeeklab/alpine-tools
commands: commands:
- mkdir dist/ - mkdir dist/
- tar -C ./overlay -zcvf dist/container-library.tar.gz . - tar -C ./overlay -zcvf dist/container-library.tar.gz .
checksum: - name: checksum
image: quay.io/thegeeklab/alpine-tools image: quay.io/thegeeklab/alpine-tools
commands: commands:
- cd dist/ && sha256sum * > ../sha256sum.txt - cd dist/ && sha256sum * > ../sha256sum.txt
changelog: - name: changelog
image: quay.io/thegeeklab/git-sv image: quay.io/thegeeklab/git-sv
commands: commands:
- git sv current-version - git sv current-version
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md - git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
- cat CHANGELOG.md - cat CHANGELOG.md
publish-gitea: - name: publish-gitea
image: quay.io/thegeeklab/wp-gitea-release image: quay.io/thegeeklab/wp-gitea-release
settings: settings:
api_key: api_key:

View File

@ -6,13 +6,13 @@ when:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
steps: steps:
markdownlint: - name: markdownlint
image: quay.io/thegeeklab/markdownlint-cli image: quay.io/thegeeklab/markdownlint-cli
group: test group: test
commands: commands:
- markdownlint 'README.md' - markdownlint 'README.md'
spellcheck: - name: spellcheck
image: quay.io/thegeeklab/alpine-tools image: quay.io/thegeeklab/alpine-tools
group: test group: test
commands: commands:
@ -20,7 +20,7 @@ steps:
environment: environment:
FORCE_COLOR: "true" FORCE_COLOR: "true"
link-validation: - name: link-validation
image: docker.io/lycheeverse/lychee image: docker.io/lycheeverse/lychee
group: test group: test
commands: commands:

View File

@ -8,7 +8,7 @@ when:
runs_on: [success, failure] runs_on: [success, failure]
steps: steps:
matrix: - name: matrix
image: quay.io/thegeeklab/wp-matrix image: quay.io/thegeeklab/wp-matrix
settings: settings:
homeserver: homeserver:

View File

@ -6,7 +6,7 @@ when:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
steps: steps:
lint: - name: lint
image: docker.io/koalaman/shellcheck-alpine:stable image: docker.io/koalaman/shellcheck-alpine:stable
commands: commands:
- shellcheck --version - shellcheck --version