Files
configure-aws-credentials/.github/workflows/test-workflow.yml
T
CodeBuild Integration Test 661b774204 Test commit 47312577c9
2020-03-03 02:15:21 +00:00

31 lines
784 B
YAML

on:
push:
branches:
- integ-tests
name: Integration Test
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Print current build ID
run: |
echo Integration test run: githubactionsconfigureawscr-hAMhr2qzHnWH:626fdd00-46a2-4f93-b3e5-311f3b368500
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@47312577c9b17cb9273286670899a0b4cc346937
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- name: Test environment is configured with AWS credentials
run: |
aws sts get-caller-identity > /dev/null