fix(game settings): Fixed an issue preventing PalWorldSettings.ini va… #2
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: Terraform Test | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/GitHubActions | |
aws-region: us-east-1 | |
- name: Fetch the caller identity | |
run: | | |
aws sts get-caller-identity | |
- name: Run terraform test script | |
run: | | |
chmod +x ./bash-test.sh | |
./bash-test.sh |