Skip to content

Fix typo, add aws keys #2098

Fix typo, add aws keys

Fix typo, add aws keys #2098

Workflow file for this run

name: Code build
on:
workflow_call:
secrets:
aws_key:
required: true
aws_secret_key:
required: true
push:

Check failure on line 9 in .github/workflows/code-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/code-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
branches: [gh-actions-update-node-version-24]
secrets:
aws_key: ${{secrets.AWS_ACCESS_KEY_ID}}
aws_secret_key: ${{secrets.AWS_SECRET_ACCESS_KEY}}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.aws_key}}
aws-secret-access-key: ${{ secrets.aws_secret_key}}
aws-region: us-west-1
- name: Run CodeBuild
id: code-build
uses: aws-actions/aws-codebuild-run-build@v1
with:
project-name: wise-client-github-actions-project
- run: echo ${{steps.code-build.outputs.aws-build-id}}