Skip to content

Commit ca655c8

Browse files
committed
update actions yml
1 parent 951cddf commit ca655c8

File tree

3 files changed

+4
-35
lines changed

3 files changed

+4
-35
lines changed

.github/workflows/publish_snapshot.yml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,31 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818

19-
- name: Publish macOS artifacts Snapshot
20-
id: publish-macos
21-
if: matrix.os == 'macos-latest'
22-
env:
23-
SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
24-
SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
25-
GPG_SECRET: ${{ secrets.GPG_SECRET }}
26-
GPG_SIGNING_PASSWORD: ${{ secrets.GPG_SIGNING_PASSWORD }}
27-
SNAPSHOT: 'TRUE'
28-
run: ./gradlew publish
29-
30-
- name: Publish windows artifacts Snapshot
31-
id: publish-win
32-
if: matrix.os == 'windows-latest'
33-
env:
34-
SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
35-
SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
36-
GPG_SECRET: ${{ secrets.GPG_SECRET }}
37-
GPG_SIGNING_PASSWORD: ${{ secrets.GPG_SIGNING_PASSWORD }}
38-
SNAPSHOT: 'TRUE'
39-
run: ./gradlew publish
40-
41-
- name: Publish linux artifacts Snapshot
42-
id: publish-linux
43-
if: matrix.os == 'ubuntu-latest'
19+
- name: Publish snapshot artifacts
4420
env:
4521
SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
4622
SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}

.github/workflows/test.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,8 @@ jobs:
1515
- name: Test
1616
run: ./gradlew jvmTest
1717

18-
- name: Archive redux-kotlin Test Reports
18+
- name: Archive redux-kotlin-thunk Test Reports
1919
uses: actions/upload-artifact@v1
2020
with:
21-
name: redux-kotlin_test_reports
22-
path: redux-kotlin/build/reports/tests
23-
24-
- name: Archive redux-kotlin-threadsafe Test Reports
25-
uses: actions/upload-artifact@v1
26-
with:
27-
name: redux-kotlin-threadsafe_test_reports
28-
path: redux-kotlin-threadsafe/build/reports/tests
21+
name: redux-kotlin-thunk_test_reports
22+
path: redux-kotlin-thunk/build/reports/tests

redux-kotlin-thunk/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ apply plugin: 'kotlin-multiplatform'
77
archivesBaseName = 'redux-kotlin-thunk'
88

99
group 'org.reduxkotlin'
10-
version '0.5.3'
1110

1211
kotlin {
1312
jvm()

0 commit comments

Comments
 (0)