Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOSのApp Storeへの申請を通るようにした #723
iOSのApp Storeへの申請を通るようにした #723
Changes from 16 commits
47663e6
471d096
94661ad
3ac7672
be6326a
c994f67
d9e693f
2cd3af7
e5cda74
72fad0d
1f542f9
0bb8aca
7d89087
0c62e3d
e181490
ec308f9
4c8a7e1
d95e7da
929925a
18206a0
bb6e24b
92b3bc8
c93d896
3f037f1
d6da3be
a1ffeab
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
入出力のディレクトリ、
artifact/voicevox_core-x86_64-apple-ios
artifact/voicevox_core-aarch64-apple-ios-sim
artifact/voicevox_core-aarch64-apple-ios
artifact/${ASSET_NAME}
は外から引数、あるいは環境変数として与えられるようにしておくと便利かもと思いました!
というのも、たとえばbuild.yamlの方でartifactのディレクトリ名を変えたとき、こっちのbashファイル内のディレクトリ名を変えるのを忘れそうなんですよね。
引数や環境変数で与えるようにすればどこを変えればよいかわかりやすいかなと!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
入出力ディレクトリをyaml側からbash側に入れるようにしました。
少し気持ち悪い点がありまして、
yaml側の環境定義で
ASSET_NAME: voicevox_core-ios-xcframework-cpu-${{ needs.config.outputs.version }}
ASSET_PATH: artifact/voicevox_core-ios-xcframework-cpu-${{ needs.config.outputs.version }}
と記述に重複があります。
(envの中で前に定義したのが使えないようで、次のstepsで
echo "ASSET_PATH=artifact/${ASSET_NAME}" >> $GITHUB_ENV
とできるようなのですが、わかりにくいので現状はこれにしました。)
This file was deleted.
This file was deleted.