Skip to content

Commit e475fcc

Browse files
committed
Setup python environment, source
1 parent 2bdb550 commit e475fcc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,22 @@ jobs:
77
update:
88
runs-on: ubuntu-latest
99
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Configure aws credentials
13+
uses: aws-actions/configure-aws-credentials@v1
14+
with:
15+
aws-access-key-id: ${{ secrets.SIGSCI_ACCESS_KEY_ID }}
16+
aws-secret-access-key: ${{ secrets.SIGSCI_SECRET_ACCESS_KEY }}
17+
aws-region: us-west-2
1018
- name: Setup python
1119
uses: actions/setup-python@v2
1220
with:
1321
python-version: 3
22+
- name: Install python deps
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install botocore boto3
1426
- name: Update metadata
1527
run: |
1628
./scripts/update-release-metadata.py sigsci-module-golang ${{ github.ref }}

0 commit comments

Comments
 (0)