mirror of https://github.com/dapr/java-sdk.git
Restrict deploy to a subset of artifacts (#1229)
Signed-off-by: Artur Souza <asouza.pro@gmail.com>
This commit is contained in:
parent
7b5ad1a7ed
commit
133e8acce7
|
@ -181,4 +181,4 @@ jobs:
|
|||
echo ${{ secrets.GPG_PRIVATE_KEY }} | base64 -d > private-key.gpg
|
||||
export GPG_TTY=$(tty)
|
||||
gpg --batch --import private-key.gpg
|
||||
./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy -pl \!examples
|
||||
./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy -Pdeploy-profile
|
||||
|
|
13
pom.xml
13
pom.xml
|
@ -343,6 +343,19 @@
|
|||
</modules>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>deploy-profile</id>
|
||||
<modules>
|
||||
<!-- Include only the modules to be deployed -->
|
||||
<module>sdk-autogen</module>
|
||||
<module>sdk</module>
|
||||
<module>sdk-actors</module>
|
||||
<module>sdk-springboot</module>
|
||||
<module>sdk-workflows</module>
|
||||
<module>testcontainers-dapr</module>
|
||||
<module>dapr-spring</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>integration-tests</id>
|
||||
<modules>
|
||||
|
|
Loading…
Reference in New Issue