We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdb550 commit e475fccCopy full SHA for e475fcc
.github/workflows/release.yml
@@ -7,10 +7,22 @@ jobs:
7
update:
8
runs-on: ubuntu-latest
9
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
18
- name: Setup python
19
uses: actions/setup-python@v2
20
with:
21
python-version: 3
22
+ - name: Install python deps
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install botocore boto3
26
- name: Update metadata
27
run: |
28
./scripts/update-release-metadata.py sigsci-module-golang ${{ github.ref }}
0 commit comments