Update deploy-artifacts for Central Portal #572
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | ||
| on: | ||
| push: | ||
| branches-ignore: | ||
| - "dependabot/**" | ||
| schedule: | ||
| - cron: '0 10 * * *' # Once per day at 10am UTC | ||
| workflow_dispatch: # Manual trigger | ||
| jobs: | ||
| build: | ||
| name: Build | ||
| uses: spring-io/spring-security-release-tools/.github/workflows/build.yml@v1 | ||
| strategy: | ||
| matrix: | ||
| os: [ ubuntu-latest ] | ||
| jdk: [ 17 ] | ||
| with: | ||
| runs-on: ${{ matrix.os }} | ||
| java-version: ${{ matrix.jdk }} | ||
| distribution: temurin | ||
| secrets: inherit | ||
| deploy-artifacts: | ||
| name: Deploy Artifacts | ||
| needs: [ build ] | ||
| uses: spring-io/spring-security-release-tools/.github/workflows/deploy-artifacts.yml@d2e4d74 # testing central release | ||
|
Check failure on line 27 in .github/workflows/continuous-integration-workflow.yml
|
||
| with: | ||
| should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }} | ||
| secrets: inherit | ||