Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Add aws as env

Add aws as env #4

Workflow file for this run

name: Java CI
on: [ push ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'main') }}
env:
AWS: "aws"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout self
uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: us-west-2
role-to-assume: arn:aws:iam::194159489498:role/GithubActionsInstallHudiForGatewayC-RepositoryRole-182NI133SRXP0
role-session-name: HudiInstallSession
role-duration-seconds: 900
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
architecture: x64
cache: maven
- name: Build with Maven
run: mvn clean install -DskipTests