Guardian Ad-Lite: Thankyou #8044
Workflow file for this run
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: Build support-lambdas | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
support_lambdas_build: | |
if: >- | |
(github.actor != 'dependabot[bot]') && | |
(github.repository_owner == 'guardian' || | |
github.event_name == 'push') | |
# Required by actions-assume-aws-role | |
permissions: | |
id-token: write | |
contents: read | |
name: support-lambdas build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Env | |
run: env | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node for CDK | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "yarn" | |
cache-dependency-path: cdk/yarn.lock | |
- name: Build CFN from CDK | |
run: ./script/ci | |
working-directory: cdk | |
# Required by sbt riffRaffUpload | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }} | |
aws-region: eu-west-1 | |
- uses: sbt/setup-sbt@v1 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "corretto" | |
cache: sbt | |
- name: Build and upload to RiffRaff | |
run: | | |
export LAST_TEAMCITY_BUILD=15000 | |
export GITHUB_RUN_NUMBER=$(( $GITHUB_RUN_NUMBER + $LAST_TEAMCITY_BUILD )) | |
sbt "project support-lambdas" riffRaffUpload |