diff --git a/.github/workflows/update_contributors.yaml b/.github/workflows/update_contributors.yaml new file mode 100644 index 0000000000..85d6cb43fd --- /dev/null +++ b/.github/workflows/update_contributors.yaml @@ -0,0 +1,27 @@ +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: | + npx svg-contributors -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