Add verification tests
In preparation for releasing Spring Framework from GitHub actions, this commit adds a `verify` workflow that validates that the released bits are correct by running sample projects against them. Closes gh-33178
This commit is contained in:
11
.github/workflows/build-and-deploy-snapshot.yml
vendored
11
.github/workflows/build-and-deploy-snapshot.yml
vendored
@@ -46,3 +46,14 @@ jobs:
|
||||
run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }}
|
||||
outputs:
|
||||
version: ${{ steps.build-and-publish.outputs.version }}
|
||||
verify:
|
||||
name: Verify
|
||||
needs: build-and-deploy-snapshot
|
||||
uses: ./.github/workflows/verify.yml
|
||||
secrets:
|
||||
google-chat-webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
|
||||
repository-password: ${{ secrets.ARTIFACTORY_PASSWORD }}
|
||||
repository-username: ${{ secrets.ARTIFACTORY_USERNAME }}
|
||||
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
|
||||
with:
|
||||
version: ${{ needs.build-and-deploy-snapshot.outputs.version }}
|
||||
|
||||
Reference in New Issue
Block a user