mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
feat: use svg generator fork to create contributors and extend limit to 500
This commit is contained in:
parent
aa1f97889c
commit
b72ca55f65
17
.github/workflows/update_contributors.yaml
vendored
17
.github/workflows/update_contributors.yaml
vendored
@ -4,19 +4,25 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
- feat/contributors-generation
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Use Node.js 14.x
|
- name: Use Node.js 16.x
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14.x
|
node-version: 16.x
|
||||||
- name: install contributors
|
- uses: actions/checkout@master
|
||||||
|
with:
|
||||||
|
repository: sighphyre/svg-contributors
|
||||||
|
path: './svg-contributors'
|
||||||
|
- name: Create Contributors Image
|
||||||
run: |
|
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
|
- uses: aws-actions/configure-aws-credentials@v1
|
||||||
with:
|
with:
|
||||||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
@ -24,4 +30,5 @@ jobs:
|
|||||||
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
||||||
- name: Publish static assets to S3
|
- name: Publish static assets to S3
|
||||||
run: |
|
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
|
Loading…
Reference in New Issue
Block a user