Create temp notarization folder. Snapshot for e427 distro

This commit is contained in:
aboyko
2023-07-06 21:46:51 -04:00
parent 35092816b2
commit 5ff8b9bc71
4 changed files with 64 additions and 8 deletions

View File

@@ -518,14 +518,12 @@
<parallel failonany="true">
<exec executable="/bin/bash" failonerror="true">
<arg value="${project.build.directory}/../macos-notarize.sh" />
<exec executable="${project.build.directory}/../macos-notarize.sh" failonerror="true">
<arg value="${dmgName}" />
<arg value="${env.MACOS_NOTARIZATION_SERVICE_URL}" />
</exec>
<exec executable="/bin/bash" failonerror="true">
<arg value="${project.build.directory}/../macos-notarize.sh" />
<exec executable="${project.build.directory}/../macos-notarize.sh" failonerror="true">
<arg value="${dmgName-aarch64}" />
<arg value="${env.MACOS_NOTARIZATION_SERVICE_URL}" />
</exec>
@@ -752,4 +750,26 @@
</plugins>
</pluginManagement> -->
</build>
<profiles>
<profile>
<id>gpg.sign</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-gpg-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>sign-p2-artifacts</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>