Fix the release path in build

This commit is contained in:
Nikolai Rodionov 2023-08-19 15:27:11 +02:00
parent efe63eaf3e
commit e92fa5db8b
No known key found for this signature in database
GPG Key ID: 19DB54039EBF8F10

View File

@ -30,13 +30,14 @@ steps:
image: ubuntu:22.04 image: ubuntu:22.04
commands: commands:
- mkdir dist - mkdir dist
- cp -r build/release/Standalone/paulxstretch dist/ - export RELEASE_DIR=build/PaulXStretch_artefacts/Release
- cp -r build/release/VST3/PaulXStretch.vst3 dist/ - cp -r $RELEASE_DIR/Standalone/paulxstretch dist/
- cp -r $RELEASE_DIR/VST3/PaulXStretch.vst3 dist/
- name: Release paulxstretch - name: Release paulxstretch
image: plugins/gitea-release image: plugins/gitea-release
settings: settings:
api_key: api_key:
from_secret: GITEA_TOKEN from_secret: GITEA_TOKEN
base_url: https://git.badhouseplants.net base_url: https://git.badhouseplants.net
files: dist/* files: dist/*