Commit 83bdd3be authored by nanahira's avatar nanahira

fix

parent 90dd4007
...@@ -174,3 +174,28 @@ pack_macos: ...@@ -174,3 +174,28 @@ pack_macos:
dependencies: dependencies:
- StandaloneOSX - StandaloneOSX
- resources - resources
.deploy:
stage: deploy
only:
- master
- tags
tags:
- linux
dependencies:
- pack_windows
- pack_linux
- pack_macos
upload_to_minio:
extends: .deploy
script:
- aws s3 --endpoint=https://minio.moenext.com:9000 sync dist/ s3://mycard/mdpro3-release
upload_mycard:
extends: .deploy
variables:
appVersion: $CI_COMMIT_TAG
script: ./ci/upload-packager.sh
only:
- tags
...@@ -295,7 +295,7 @@ namespace MDPro3 ...@@ -295,7 +295,7 @@ namespace MDPro3
#if UNITY_EDITOR #if UNITY_EDITOR
root = PATH_ROOT_EDITOR + root; root = PATH_ROOT_EDITOR + root;
#elif UNITY_STANDALONE_OSX #elif UNITY_STANDALONE_OSX
root = Path.Combine(Application.dataPath, root) root = Path.Combine(Application.dataPath, root);
#endif #endif
instance = this; instance = this;
Initialize(); Initialize();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment