Do not track the tf bucket in tf, it doesn't work Also make the landing-page bucket public #2312
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: Backend Test | |
on: pull_request | |
# Cancel any current or previous job from the same PR | |
concurrency: | |
group: backend-test-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3.3.2 | |
- uses: hashicorp/setup-terraform@v3 | |
- name: Build | |
run: ./gradlew :backend:service-graphql:build :backend:service-import:build |