Fixing woodpecker. (#2402)

Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
This commit is contained in:
Dessalines 2024-03-27 13:04:59 -04:00 committed by GitHub
parent ad07fc4fed
commit 4dbf8fd2f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,18 +8,24 @@ steps:
- apk add git - apk add git
- git submodule init - git submodule init
- git submodule update --recursive --remote - git submodule update --recursive --remote
when:
- event: pull_request
install: install:
image: node:20-alpine image: node:20-alpine
commands: commands:
- *install_pnpm - *install_pnpm
- pnpm i - pnpm i
when:
- event: pull_request
lint: lint:
image: node:20-alpine image: node:20-alpine
commands: commands:
- *install_pnpm - *install_pnpm
- pnpm lint - pnpm lint
when:
- event: pull_request
build_dev: build_dev:
image: node:20-alpine image: node:20-alpine
@ -27,6 +33,8 @@ steps:
- *install_pnpm - *install_pnpm
- pnpm prebuild:dev - pnpm prebuild:dev
- pnpm build:dev - pnpm build:dev
when:
- event: pull_request
publish_release_docker: publish_release_docker:
image: woodpeckerci/plugin-docker-buildx image: woodpeckerci/plugin-docker-buildx
@ -37,7 +45,7 @@ steps:
platforms: linux/amd64, linux/arm64 platforms: linux/amd64, linux/arm64
tag: ${CI_COMMIT_TAG} tag: ${CI_COMMIT_TAG}
when: when:
event: tag - event: tag
nightly_build: nightly_build:
image: woodpeckerci/plugin-docker-buildx image: woodpeckerci/plugin-docker-buildx
@ -48,7 +56,7 @@ steps:
platforms: linux/amd64, linux/arm64 platforms: linux/amd64, linux/arm64
tag: dev tag: dev
when: when:
event: cron - event: cron
notify_on_failure: notify_on_failure:
image: alpine:3 image: alpine:3
@ -56,7 +64,8 @@ steps:
- apk add curl - apk add curl
- "curl -d'Lemmy-UI CI build failed: ${CI_PIPELINE_URL}' ntfy.sh/lemmy_drone_ci" - "curl -d'Lemmy-UI CI build failed: ${CI_PIPELINE_URL}' ntfy.sh/lemmy_drone_ci"
when: when:
status: [failure] - event: pull_request
status: failure
notify_on_tag_deploy: notify_on_tag_deploy:
image: alpine:3 image: alpine:3