Feliday-UI/.woodpecker.yml

35 lines
684 B
YAML
Raw Normal View History

pipeline:
fetch_git_submodules:
2023-06-07 00:53:49 +00:00
image: node:alpine
commands:
- apk add git
- git submodule init
- git submodule update --recursive --remote
# - git fetch --tags
yarn:
2023-06-07 00:53:49 +00:00
image: node:alpine
commands:
- yarn
yarn_lint:
2023-06-07 00:53:49 +00:00
image: node:alpine
commands:
- yarn lint
yarn_build_dev:
2023-06-07 00:53:49 +00:00
image: node:alpine
commands:
- yarn build:dev
2023-06-08 03:57:58 +00:00
publish_release_docker:
image: woodpeckerci/plugin-docker-buildx
secrets: [docker_username, docker_password]
settings:
2023-06-08 03:57:58 +00:00
repo: woodpeckerci/woodpecker-agent
dockerfile: Dockerfile
2023-06-08 03:57:58 +00:00
platforms: linux/amd64
auto_tag: true
when:
event: tag