Merge pull request #60 from nationalarchives/update/aws-java-sdk-dyna… #63
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: Tag and pre deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
pre-deploy: | |
uses: nationalarchives/tdr-github-actions/.github/workflows/lambda_build.yml@main | |
with: | |
repo-name: da-reference-generator | |
artifact-name: reference-generator | |
build-command: | | |
sbt assembly | |
secrets: | |
MANAGEMENT_ACCOUNT: ${{ secrets.TDR_MANAGEMENT_ACCOUNT }} | |
WORKFLOW_PAT: ${{ secrets.TDR_WORKFLOW_PAT }} | |
deploy: | |
needs: pre-deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: gh workflow run tdr_deploy.yml -f environment=intg -f to-deploy=${{ needs.pre-deploy.outputs.next-version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.TDR_WORKFLOW_PAT }} | |