-
-
Notifications
You must be signed in to change notification settings - Fork 8
46 lines (41 loc) · 1.07 KB
/
iam_access_credentials.yml
File metadata and controls
46 lines (41 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: iam_access_credentials
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/**'
- 'iam_access_credentials/**'
- 'package.json'
- 'package-lock.json'
push:
branches:
- main
paths:
- '.github/workflows/**'
- 'iam_access_credentials/**'
- 'package.json'
- 'package-lock.json'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
iam-access-credentials:
name: Setup IAM access credentials
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Configure AWS Credentials
uses: ./iam_access_credentials
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1