Make directory for output target
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-04-25 13:03:48 -05:00
parent 3b40ae2e8d
commit fe6146c489
2 changed files with 6 additions and 1 deletions
+3 -1
View File
@@ -3,5 +3,7 @@ FROM barichello/godot-ci:4.6
ENV PLUGIN_SOURCE=. ENV PLUGIN_SOURCE=.
ENV PLUGIN_EXPORT_TEMPLATE="Windows Desktop" ENV PLUGIN_EXPORT_TEMPLATE="Windows Desktop"
ADD entrypoint /entrypoint
ENTRYPOINT [] ENTRYPOINT []
CMD godot --headless --path "$PLUGIN_SOURCE" --export-release "$PLUGIN_EXPORT_TEMPLATE" "$PLUGIN_TARGET" CMD entrypoint
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
mkdir -p "$(dirname $PLUGIN_TARGET)"
godot --headless --path "$PLUGIN_SOURCE" --export-release "$PLUGIN_EXPORT_TEMPLATE" "$PLUGIN_TARGET"