project-layout/.woodpecker.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2022-07-18 04:39:05 +00:00
clone:
git:
image: woodpeckerci/plugin-git
settings:
tags: true
pipeline:
build:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
commands:
- nix develop --command scripts/build.sh
when:
event: [push, pull_request, tag]
tag: v*
test:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
commands:
2022-07-18 04:39:05 +00:00
- nix develop --command scripts/test.sh
when:
event: [push, pull_request]
release-main:
2022-07-18 04:39:05 +00:00
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
commands:
- export DRONE="true" # Required to convince `env-ci` that it is a known CI
2022-07-20 00:25:56 +00:00
- git branch $DRONE_BRANCH origin/$DRONE_BRANCH # semantic-release needs this locally
2022-07-18 04:39:05 +00:00
- nix develop --command scripts/release.sh
secrets:
- gitea_token
- git_credentials
when:
event: push
2022-07-18 04:39:05 +00:00
branch: main
release-gitea:
image: plugins/gitea-release
settings:
base_url: https://src.mfgames.com
files:
- "*.pdf"
- "*.epub"
api_key:
from_secret: gitea_token
when:
event: tag
tag: v*