File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
src/main/scala/algoliasearch/extension Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v4
16
+ with :
17
+ fetch-tags : true
18
+
19
+ - name : checkout the release tag
20
+ run : |
21
+ TAG=$(sed -n 's/.*version := "\(.*\)"/\1/p' version.sbt)
22
+ echo "Checking out tag $TAG"
23
+ git checkout "v$TAG"
16
24
17
25
- name : Install Java
18
26
uses : actions/setup-java@v4
26
34
27
35
- run : sbt ci-release
28
36
env :
29
- PGP_PASSPHRASE : ${{ secrets.SIGNING_PRIVATE_KEY_PASSWORD }}
30
- PGP_SECRET : ${{ secrets.SIGNING_PRIVATE_KEY }}
37
+ PGP_PASSPHRASE : ${{ secrets.PGP_PASSPHRASE }}
38
+ PGP_SECRET : ${{ secrets.PGP_SECRET }}
31
39
SONATYPE_USERNAME : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
32
40
SONATYPE_PASSWORD : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
Original file line number Diff line number Diff line change @@ -419,7 +419,8 @@ package object extension {
419
419
* settings, synonyms and query rules and indexes all passed objects. Finally, the temporary one replaces the
420
420
* existing index.
421
421
*
422
- * See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
422
+ * See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation
423
+ * details.
423
424
*
424
425
* @param indexName
425
426
* The index in which to perform the request.
You can’t perform that action at this time.
0 commit comments