From 7c5107e68045f7c6ae503364f64a628a7be37f05 Mon Sep 17 00:00:00 2001 From: sighphyre Date: Thu, 21 Apr 2022 13:50:08 +0200 Subject: [PATCH 1/2] feat: add contributors image generation workflow --- .github/workflows/update_contributors.yaml | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/update_contributors.yaml diff --git a/.github/workflows/update_contributors.yaml b/.github/workflows/update_contributors.yaml new file mode 100644 index 0000000000..00bec5bd15 --- /dev/null +++ b/.github/workflows/update_contributors.yaml @@ -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 \ No newline at end of file From aa1f97889c3a6c3c0ac1dfe79f738a4ea104fbb3 Mon Sep 17 00:00:00 2001 From: sighphyre Date: Thu, 21 Apr 2022 14:11:48 +0200 Subject: [PATCH 2/2] Update .github/workflows/update_contributors.yaml Co-authored-by: Thomas Heartman --- .github/workflows/update_contributors.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/update_contributors.yaml b/.github/workflows/update_contributors.yaml index 00bec5bd15..85d6cb43fd 100644 --- a/.github/workflows/update_contributors.yaml +++ b/.github/workflows/update_contributors.yaml @@ -16,8 +16,7 @@ jobs: node-version: 14.x - name: install contributors run: | - npm i svg-contributors -g - dummysvg -o unleash -n unleash + npx svg-contributors -o unleash -n unleash - uses: aws-actions/configure-aws-credentials@v1 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}