Skip to content

Commit 3377574

Browse files
shortcutsmillotp
andauthored
fix(ci): run swift everytime, default success to false (#3379)
Co-authored-by: Pierre Millot <[email protected]>
1 parent e6f5e0f commit 3377574

File tree

34 files changed

+102
-178
lines changed

34 files changed

+102
-178
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,6 @@ jobs:
405405
- client_gen
406406
if: |
407407
always() &&
408-
startsWith(github.head_ref, 'chore/prepare-release-') &&
409408
needs.setup.outputs.RUN_GEN == 'true' &&
410409
needs.setup.outputs.RUN_MACOS_SWIFT_CTS == 'true' &&
411410
!contains(needs.*.result, 'cancelled') &&
@@ -541,7 +540,7 @@ jobs:
541540
if: always()
542541
steps:
543542
- run: |
544-
if [[ ("${{ needs.codegen.outputs.success }}" != "true") || ("${{ needs.swift_cts_macos.outputs.success }}" != "true") || ("${{ needs.kotlin_build_macos.outputs.success }}" != "true")]]; then
543+
if [[ ("${{ needs.codegen.outputs.success }}" != "true") || ("${{ needs.swift_cts_macos.result }}" != "skipped" && "${{ needs.swift_cts_macos.outputs.success }}" != "true") || ("${{ needs.kotlin_build_macos.result }}" != "skipped" && "${{ needs.kotlin_build_macos.outputs.success }}" != "true")]]; then
545544
echo "a needed step failed"
546545
exit 1
547546
fi

clients/algoliasearch-client-csharp/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [7.0.0-beta.10](https://github.com/algolia/algoliasearch-client-csharp/compare/7.0.0-beta.9...7.0.0-beta.10)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [7.0.0-beta.9](https://github.com/algolia/algoliasearch-client-csharp/compare/7.0.0-beta.8...7.0.0-beta.9)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-dart/packages/algoliasearch/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [1.17.2](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.1...1.17.2)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [1.17.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.0...1.17.1)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-dart/packages/client_core/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [1.17.2](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.1...1.17.2)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [1.17.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.0...1.17.1)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-dart/packages/client_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
Algolia Client Core is a Dart package for seamless Algolia API integration,
44
offering HTTP request handling, retry strategy, and robust exception
55
management.
6-
version: 1.17.2
6+
version: 1.17.1
77
homepage: https://www.algolia.com/doc/
88
repository: >-
99
https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_core

clients/algoliasearch-client-dart/packages/client_insights/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [1.17.2](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.1...1.17.2)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [1.17.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.0...1.17.1)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-dart/packages/client_recommend/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [1.17.2](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.1...1.17.2)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [1.17.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.0...1.17.1)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-dart/packages/client_search/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [1.17.2](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.1...1.17.2)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [1.17.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.17.0...1.17.1)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-go/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [4.0.0-beta.24](https://github.com/algolia/algoliasearch-client-go/compare/4.0.0-beta.23...4.0.0-beta.24)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [4.0.0-beta.23](https://github.com/algolia/algoliasearch-client-go/compare/4.0.0-beta.22...4.0.0-beta.23)
72

83
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

clients/algoliasearch-client-java/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## [4.0.0-beta.41](https://github.com/algolia/algoliasearch-client-java/compare/4.0.0-beta.40...4.0.0-beta.41)
2-
3-
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
4-
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
5-
61
## [4.0.0-beta.40](https://github.com/algolia/algoliasearch-client-java/compare/4.0.0-beta.39...4.0.0-beta.40)
72

83
- [f1b186646](https://github.com/algolia/api-clients-automation/commit/f1b186646) fix(java): add overload for browseObjects ([#3351](https://github.com/algolia/api-clients-automation/pull/3351)) by [@millotp](https://github.com/millotp/)

0 commit comments

Comments
 (0)