mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-06 01:15:28 +02:00
feat: add contributors image generation workflow
This commit is contained in:
parent
3dab413648
commit
7c5107e680
28
.github/workflows/update_contributors.yaml
vendored
Normal file
28
.github/workflows/update_contributors.yaml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
name: Update Contributors
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Use Node.js 14.x
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 14.x
|
||||||
|
- name: install contributors
|
||||||
|
run: |
|
||||||
|
npm i svg-contributors -g
|
||||||
|
dummysvg -o unleash -n unleash
|
||||||
|
- 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
|
Loading…
Reference in New Issue
Block a user