We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f9906 commit 4983615Copy full SHA for 4983615
.github/workflows/release.yml
@@ -21,7 +21,7 @@ jobs:
21
cache: 'maven'
22
23
- name: Build with Maven
24
- run: mvn -B clean package -DskipTests -Dmaven.deploy.skip=true
+ run: mvn -B clean package -DskipTests
25
26
- name: Create Release
27
uses: softprops/action-gh-release@v1
pom.xml
@@ -160,6 +160,15 @@
160
</executions>
161
</plugin>
162
163
+ <plugin>
164
+ <groupId>org.apache.maven.plugins</groupId>
165
+ <artifactId>maven-deploy-plugin</artifactId>
166
+ <version>3.1.2</version>
167
+ <configuration>
168
+ <skip>true</skip>
169
+ </configuration>
170
+ </plugin>
171
+
172
</plugins>
173
</build>
174
0 commit comments