Skip to content

Commit a64c709

Browse files
Merge pull request #25 from supabase-community/chore/add-release-action
remove signing plugins
2 parents 344b8a9 + e15895d commit a64c709

File tree

2 files changed

+6
-40
lines changed

2 files changed

+6
-40
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
steps:
1414
- name: Clone Repository
1515
uses: actions/checkout@v3
16+
1617
- name: Setup JDK 8
1718
uses: actions/setup-java@v3
1819
with:
@@ -22,12 +23,16 @@ jobs:
2223
server-id: 'github'
2324
server-username: 'supabase-community'
2425
server-password: ${{ secrets.GITHUB_TOKEN }}
26+
2527
- name: Run docker compose
2628
run: cd infra && docker compose up -d
29+
2730
- name: Build with Maven
28-
run: mvn --batch-mode --update-snapshots package
31+
run: mvn --batch-mode clean install
32+
2933
- name: Deploy package
3034
run: mvn deploy
35+
3136
- name: Publish Javadocs to GH pages.
3237
uses: MathieuSoysal/Javadoc-publisher.yml@v2.3.0
3338
with:

pom.xml

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -121,45 +121,6 @@
121121
</execution>
122122
</executions>
123123
</plugin>
124-
<plugin>
125-
<groupId>org.sonatype.plugins</groupId>
126-
<artifactId>nexus-staging-maven-plugin</artifactId>
127-
<version>1.6.13</version>
128-
<extensions>true</extensions>
129-
<configuration>
130-
<serverId>ossrh</serverId>
131-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
132-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
133-
</configuration>
134-
<dependencies>
135-
<dependency>
136-
<groupId>com.thoughtworks.xstream</groupId>
137-
<artifactId>xstream</artifactId>
138-
<version>1.4.19</version>
139-
</dependency>
140-
</dependencies>
141-
</plugin>
142-
<plugin>
143-
<groupId>org.apache.maven.plugins</groupId>
144-
<artifactId>maven-gpg-plugin</artifactId>
145-
<version>1.6</version>
146-
<executions>
147-
<execution>
148-
<id>sign-artifacts</id>
149-
<phase>verify</phase>
150-
<goals>
151-
<goal>sign</goal>
152-
</goals>
153-
<configuration>
154-
<gpgArguments>
155-
<arg>--pinentry-mode</arg>
156-
<arg>loopback</arg>
157-
</gpgArguments>
158-
159-
</configuration>
160-
</execution>
161-
</executions>
162-
</plugin>
163124
</plugins>
164125
</build>
165126

0 commit comments

Comments
 (0)