mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	Merge pull request #1514 from Unleash/feat/contributors-generation
feat: add contributors image generation workflow
This commit is contained in:
		
						commit
						f9497cecb9
					
				
							
								
								
									
										27
									
								
								.github/workflows/update_contributors.yaml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								.github/workflows/update_contributors.yaml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -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
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user