Skip to content

Commit

Permalink
feat: use svg generator fork to create contributors and extend limit …
Browse files Browse the repository at this point in the history
…to 500
  • Loading branch information
sighphyre committed Apr 22, 2022
1 parent aa1f978 commit b72ca55
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/update_contributors.yaml
Expand Up @@ -4,24 +4,31 @@ on:
push:
branches:
- main
- feat/contributors-generation

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: install contributors
node-version: 16.x
- uses: actions/checkout@master
with:
repository: sighphyre/svg-contributors
path: './svg-contributors'
- name: Create Contributors Image
run: |
npx svg-contributors -o unleash -n unleash
npm install --prefix ./svg-contributors
./svg-contributors/bin/contributors -o unleash -n unleash -l 500
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
- name: Publish static assets to S3
run: |
aws s3 cp ./contributors.svg s3://getunleash-static/docs-assets/contributors.svg
ls -l
aws s3 cp contributors.svg s3://getunleash-static/docs-assets/contributors.svg

0 comments on commit b72ca55

Please sign in to comment.