-
Notifications
You must be signed in to change notification settings - Fork 118
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
build_and_deployの最後にdownload_testを実行 #609
The head ref may contain hidden characters: "build_and_deploy\u306E\u6700\u5F8C\u306Bdownload_test\u3092\u5B9F\u884C"
build_and_deployの最後にdownload_testを実行 #609
Conversation
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.
draft明けました!
@@ -318,7 +319,7 @@ jobs: | |||
cd artifact | |||
7z a "../${{ env.ASSET_NAME }}.zip" "${{ env.ASSET_NAME }}" | |||
- name: Upload to Release | |||
if: env.VERSION != '0.0.0' && env.SKIP_UPLOADING_RELEASE_ASSET == '0' && !contains(matrix.target, 'ios') | |||
if: needs.config.outputs.deploy == 'true' && env.SKIP_UPLOADING_RELEASE_ASSET == '0' && !contains(matrix.target, 'ios') |
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.
outputs系は全部文字列になるため、needs.config.outputs.deploy
だけだと"false"でも"true"でもtrue扱いになってしまう。
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.
LGTM!
レビューありがとうございます! マージ後リリースを作ってみようと思います。 |
内容
build_and_deployワークフロー実行後にダウンロードテストを実行するようにしてみました。
先に↓のマージが必要です。
関連 Issue
その他
こちらのプルリクエストの実行に必要なプルリクエストになってます