Skip to content

Commit 3078cf5

Browse files
authored
Point at new user/pass secrets with new group ID (#655)
1 parent 5806a3b commit 3078cf5

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/SNAPSHOT.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- run: ./gradlew build --stacktrace
2424
- name: Publish a SNAPSHOT
2525
env:
26-
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
27-
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
26+
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME_APP_CASH }}
27+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD_APP_CASH }}
2828
run: ./gradlew publish --no-daemon -Dorg.gradle.parallel=false
2929

3030
env:

gradle.properties

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
GROUP=com.alecstrong.sql.psi
1+
GROUP=app.cash.sql-psi
22
VERSION_NAME=0.5.0-SNAPSHOT
33

4-
POM_URL=https://github.com/alecstrong/sql-psi/
5-
POM_SCM_URL=https://github.com/alecstrong/sql-psi/
6-
POM_SCM_CONNECTION=scm:git:git://github.com/alecstrong/sql-psi.git
7-
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/alecstrong/sql-psi.git
4+
POM_URL=https://github.com/sqldelight/sql-psi/
5+
POM_SCM_URL=https://github.com/sqldelight/sql-psi/
6+
POM_SCM_CONNECTION=scm:git:git://github.com/sqldelight/sql-psi.git
7+
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/sqldelight/sql-psi.git
88

99
POM_LICENCE_NAME=The Apache Software License, Version 2.0
1010
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
1111
POM_LICENCE_DIST=repo
1212

13-
POM_DEVELOPER_ID=alecstrong
14-
POM_DEVELOPER_NAME=Alec Strong
13+
POM_DEVELOPER_ID=cashapp
14+
POM_DEVELOPER_NAME=CashApp
15+
POM_DEVELOPER_URL=https://github.com/cashapp
1516

1617
SONATYPE_HOST=DEFAULT
18+
SONATYPE_AUTOMATIC_RELEASE=true
1719
RELEASE_SIGNING_ENABLED=true

0 commit comments

Comments
 (0)