Skip to content

Commit c67eaf0

Browse files
author
Patrick Jackson
committed
fix type in publish.gradle. Update publish_snapshot.yml
1 parent 1c9a868 commit c67eaf0

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

.github/workflows/publish_snapshot.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,8 @@ jobs:
4949
SNAPSHOT: 'TRUE'
5050
run: ./gradlew publish
5151

52-
- name: Archive lib publications dir
52+
- name: Archive reselect publications dir
5353
uses: actions/upload-artifact@v1
5454
with:
5555
name: publications-${{ matrix.os }}
56-
path: redux-kotlin/build/publications
57-
58-
- name: Archive lib-threadsafe publications dir
59-
if: steps.publish-win.outputs.exit_code == 0 || steps.publish-macos.outputs.exit_code == 0 || steps.publish-linux.outputs.exit_code == 0
60-
uses: actions/upload-artifact@v1
61-
with:
62-
name: publications-threadsafe-${{ matrix.os }}
63-
path: redux-kotlin-threadsafe/build/publications
64-
56+
path: reselect/build/publications

gradle/pom.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ project.ext.configureMavenCentralMetadata = { pom ->
2424
def root = asNode()
2525
root.appendNode('name', project.name)
2626
root.appendNode('description', 'Reselect implementation for ReduxKotlin.')
27-
root.appendNode('url', 'https://github.com/reduxkotlin/Rselect')
27+
root.appendNode('url', 'https://github.com/reduxkotlin/Reselect')
2828
root.children().last() + pomConfig
2929
}

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies {
4646
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
4747
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.1'
4848
implementation 'androidx.navigation:navigation-ui-ktx:2.2.1'
49-
implementation 'org.reduxkotlin:redux-kotlin:0.4.0'
49+
implementation 'org.reduxkotlin:redux-kotlin:0.5.5'
5050
implementation 'org.reduxkotlin:redux-kotlin-thunk:0.4.0'
5151
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3'
5252
implementation project(':reselect')

0 commit comments

Comments
 (0)