jsii-release 0.2.706 → 0.2.708
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.projenrc.ts +5 -3
- package/bin/publib-maven +1 -1
- package/package.json +1 -1
- package/package.json.bak +1 -1
package/.projenrc.ts
CHANGED
|
@@ -96,9 +96,9 @@ test?.addJob('determine_env', {
|
|
|
96
96
|
run: 'echo IntegTestCredentialsRequireApproval > .envname',
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
|
-
name: '
|
|
100
|
-
// In a mergeGroup event,
|
|
101
|
-
if: '
|
|
99
|
+
name: 'Run automatically if in a mergeGroup or PR created from this repo',
|
|
100
|
+
// In a mergeGroup event, or a non-forked request, run without confirmation
|
|
101
|
+
if: "${{ github.event_name == 'merge_group' || github.event.pull_request.head.repo.full_name == github.repository }}",
|
|
102
102
|
run: 'echo IntegTestCredentials > .envname',
|
|
103
103
|
},
|
|
104
104
|
{
|
|
@@ -136,6 +136,8 @@ test?.addJob('integ', {
|
|
|
136
136
|
uses: 'actions/checkout@v3',
|
|
137
137
|
with: {
|
|
138
138
|
ref: '${{ github.event.pull_request.head.ref }}',
|
|
139
|
+
// Need this because we are running on pull_request_target
|
|
140
|
+
repository: '${{ github.event.pull_request.head.repo.full_name }}',
|
|
139
141
|
},
|
|
140
142
|
},
|
|
141
143
|
{
|
package/bin/publib-maven
CHANGED
|
@@ -199,7 +199,7 @@ deploy_central() {
|
|
|
199
199
|
|
|
200
200
|
staging_output="${workdir}/deploy-output.txt"
|
|
201
201
|
$mvn --settings=${mvn_settings} \
|
|
202
|
-
org.sonatype.plugins:nexus-staging-maven-plugin:1.6.
|
|
202
|
+
org.sonatype.plugins:nexus-staging-maven-plugin:1.6.13:deploy-staged-repository \
|
|
203
203
|
-DrepositoryDirectory=${staging} \
|
|
204
204
|
-DnexusUrl=${MAVEN_ENDPOINT:-https://oss.sonatype.org} \
|
|
205
205
|
-DserverId=${server_id} \
|
package/package.json
CHANGED
package/package.json.bak
CHANGED