Skip to content

Commit 184e153

Browse files
authored
Merge pull request #16 from getdyspatch/new-setup-action
use new setup action
2 parents 593ac73 + c0cd675 commit 184e153

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10+
- name: Configure AWS Credentials
11+
uses: aws-actions/configure-aws-credentials@v1
12+
with:
13+
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
14+
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
15+
aws-region: us-west-2
16+
- uses: actions/checkout@v2
17+
with:
18+
repository: techdroplabs/api-setup-action
19+
token: ${{ secrets.MACHINES_SWU_TOKEN }}
20+
ref: master
21+
- name: Run api setup action
22+
uses: ./
23+
with:
24+
email: ${{ secrets.QA_USERNAME }}
25+
password: ${{ secrets.QA_PASSWORD }}
26+
cognito_client_id: ${{ secrets.COGNITO_CLIENT_ID }}
27+
cognito_client_secret: ${{ secrets.COGNITO_CLIENT_SECRET }}
28+
cognito_pool_id: ${{ secrets.COGNITO_POOL_ID }}
29+
web_sso_host: ${{ secrets.WEB_SSO_HOST }}
30+
web_sso_redirect_host: ${{ secrets.WEB_SSO_REDIRECT_HOST }}
31+
graphql_url: ${{ secrets.GRAPHQL_URL }}
32+
1033
- uses: actions/checkout@v1
1134

1235
- name: Set up Java

0 commit comments

Comments
 (0)