Skip to content

Commit

Permalink
Merge pull request #2 from rees46/feat/fashion-size
Browse files Browse the repository at this point in the history
feat(search): tmply add fashion_sizes props
  • Loading branch information
TorinAsakura authored Apr 16, 2024
2 parents 134bfef + 99c2f8b commit 5a6f508
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish to Sona

on:
pull_request:
types:
- closed
branches:
- master
workflow_dispatch:

jobs:
publish:
uses: rees46/workflow/.github/workflows/reusable-android-publish.yaml@master
permissions: write-all
with:
PROPERTIES_FILE: gradle.properties
SIGNING_SECRET_KEY_RING_FILE: com.rees46.key.gpg
secrets:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
SONATYPE_REES46: ${{ secrets.SONATYPE_REES46 }}
SONATYPE_PERSONACLICK: ${{ secrets.SONATYPE_PERSONACLICK }}
SIGNING_KEY_FILE_AS_BASE64_STRING: ${{ secrets.SIGNING_KEY_FILE_AS_BASE64_STRING }}
2 changes: 1 addition & 1 deletion personalizatio-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply plugin: 'signing'

version='1.8.6'
version='1.8.7'

android {
compileSdk 34
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public enum Parameter implements AbstractParams.ParamInterface {
PRICE_MIN("price_min"),
PRICE_MAX("price_max"),
COLORS("colors"),
FASHION_SIZES("fashion_sizes")
EXCLUDE("exclude"),
//params.put(SearchParams.Parameter.NO_CLARIFICATION, true);
NO_CLARIFICATION("no_clarification"),
Expand Down
5 changes: 0 additions & 5 deletions personalizatio-sdk/src/rees46/java/com/rees46/sdk/REES46.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
import java.net.URL;
import java.util.Map;

/**
* Created by Sergey Odintsov
*
* @author nixx.dj@gmail.com
*/
final public class REES46 extends SDK {

public static final String TAG = "REES46";
Expand Down

0 comments on commit 5a6f508

Please sign in to comment.