@@ -64,39 +64,23 @@ jobs:
64
64
./gradlew publishMavenJavaPublicationToLocalRepository
65
65
./gradlew cloneRepository -PrepositoryName="spring-projects/spring-security-samples" -Pref="$samples_branch" -PcloneOutputDirectory="$SAMPLES_DIR"
66
66
./gradlew --project-dir "$SAMPLES_DIR" --init-script spring-security-ci.gradle -PlocalRepositoryPath="$LOCAL_REPOSITORY_PATH" -PspringSecurityVersion="$version" :runAllTests
67
- check-tangles :
68
- name : Check for Package Tangles
69
- runs-on : ubuntu-latest
70
- if : ${{ github.repository_owner == 'spring-projects' }}
71
- steps :
72
- - uses : actions/checkout@v4
73
- - name : Set up gradle
74
- uses : spring-io/spring-gradle-build-action@v2
75
- with :
76
- java-version : 17
77
- distribution : temurin
78
- - name : Check for package tangles
79
- env :
80
- STRUCTURE101_LICENSEID : ${{ secrets.STRUCTURE101_LICENSEID }}
81
- run : |
82
- ./gradlew assemble && ./gradlew s101 -Ps101.licenseId="$STRUCTURE101_LICENSEID" --stacktrace
83
67
deploy-artifacts :
84
68
name : Deploy Artifacts
85
- needs : [ build, test, check-samples, check-tangles ]
69
+ needs : [ build, test, check-samples ]
86
70
uses : spring-io/spring-security-release-tools/.github/workflows/deploy-artifacts.yml@v1
87
71
with :
88
72
should-deploy-artifacts : ${{ needs.build.outputs.should-deploy-artifacts }}
89
73
secrets : inherit
90
74
deploy-docs :
91
75
name : Deploy Docs
92
- needs : [ build, test, check-samples, check-tangles ]
76
+ needs : [ build, test, check-samples ]
93
77
uses : spring-io/spring-security-release-tools/.github/workflows/deploy-docs.yml@v1
94
78
with :
95
79
should-deploy-docs : ${{ needs.build.outputs.should-deploy-artifacts }}
96
80
secrets : inherit
97
81
deploy-schema :
98
82
name : Deploy Schema
99
- needs : [ build, test, check-samples, check-tangles ]
83
+ needs : [ build, test, check-samples ]
100
84
uses : spring-io/spring-security-release-tools/.github/workflows/deploy-schema.yml@v1
101
85
with :
102
86
should-deploy-schema : ${{ needs.build.outputs.should-deploy-artifacts }}
0 commit comments