FlowLauncher-OSRS-Wiki-Search/.woodpecker.yaml
Lars 7a99983875
Some checks failed
ci/woodpecker/release/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
Fixed string escape on cicd
2024-07-05 14:52:59 +02:00

23 lines
No EOL
584 B
YAML

steps:
- name: "Create a virtual environment"
image: python:3
commands:
- pip install -r ./requirements.txt -t ./lib
when:
- event: tag
- name: "Build a zip"
image: alpine
commands:
- apk add zip
- zip -r Flow.Launcher.Plugin.OSRSSearch-${CI_COMMIT_TAG}.zip . -x '*.git*'
when:
- event: tag
- name: "Create release"
image: woodpeckerci/plugin-release
settings:
files:
- 'Flow.Launcher.Plugin.OSRSSearch-${CI_COMMIT_TAG}.zip'
api_key:
from_secret: ACCESS_TOKEN
when:
- event: tag