Merge pull request #760 from nationalarchives/update/keycloak-core-22… #395
This file contains 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: TDR Tag and pre deploy Auth Server | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
pre-deploy: | |
uses: nationalarchives/tdr-github-actions/.github/workflows/ecs_build.yml@main | |
with: | |
repo-name: tdr-auth-server | |
image-name: auth-server | |
java-version: '17' | |
build-command: | | |
npm install | |
npm run build-theme | |
wget --header "Authorization: token $GITHUB_TOKEN" https://raw.githubusercontent.com/nationalarchives/tdr-configurations/master/keycloak/tdr-realm-export.json | |
sbt assemblyPackageDependency assembly | |
secrets: | |
MANAGEMENT_ACCOUNT: ${{ secrets.MANAGEMENT_ACCOUNT }} | |
WORKFLOW_PAT: ${{ secrets.WORKFLOW_PAT }} | |
deploy: | |
needs: pre-deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: gh workflow run deploy.yml -f environment=intg -f to-deploy=${{ needs.pre-deploy.outputs.next-version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.WORKFLOW_PAT }} |