24 lines
634 B
YAML
24 lines
634 B
YAML
steps:
|
|
pack:
|
|
image: ubuntu:22.04
|
|
pull: true
|
|
commands:
|
|
- apt update && apt upgrade -y && apt install -y zip
|
|
- xargs -a .pk3include -I% find . -wholename ./% | zip zorch_squadron.${CI_COMMIT_TAG}.pk3 -@
|
|
when:
|
|
- event: tag
|
|
ref: refs/tags/v*.*.*
|
|
publish:
|
|
image: woodpeckerci/plugin-gitea-release
|
|
when:
|
|
- event: tag
|
|
ref: refs/tags/v*.*.*
|
|
settings:
|
|
base_url: https://vcs.otl-hga.net
|
|
files:
|
|
- "zorch_squadron.*.pk3"
|
|
prerelease: true
|
|
target: trunk
|
|
note: "${CI_COMMIT_MESSAGE}"
|
|
api_key:
|
|
from_secret: WOODPECKER_CI_TOKEN |