Added cicd

This commit is contained in:
Lars 2024-07-05 14:40:25 +02:00
parent 98c1b8c0df
commit 7d3b9e68df

23
.woodpecker.yaml Normal file
View file

@ -0,0 +1,23 @@
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 '*.zip'
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