Update .github/workflows/website.yaml
This commit is contained in:
		
							
								
								
									
										76
									
								
								.github/workflows/website.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										76
									
								
								.github/workflows/website.yaml
									
									
									
									
										vendored
									
									
								
							@@ -1,22 +1,54 @@
 | 
				
			|||||||
name: Build Website
 | 
					name: Build Website
 | 
				
			||||||
run-name: Build Website
 | 
					run-name: Build Website
 | 
				
			||||||
 | 
					
 | 
				
			||||||
on:
 | 
					on:
 | 
				
			||||||
    push:
 | 
					    push:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
    build:
 | 
					    build:
 | 
				
			||||||
        name: Build NPM Project
 | 
					        name: Build NPM Project
 | 
				
			||||||
        uses: ztimson/actions/.github/workflows/npm.yaml@develop
 | 
					        runs-on: ubuntu-latest
 | 
				
			||||||
        with:
 | 
					        container: node
 | 
				
			||||||
            repository: ${{github.server_url}}/${{github.repository}}.git
 | 
					        steps:
 | 
				
			||||||
            artifact_name: website
 | 
					            - name: Clone Repository
 | 
				
			||||||
            artifacts: dist
 | 
					              uses: ztimson/actions/clone@develop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    publish:
 | 
					            - name: Install Dependencies
 | 
				
			||||||
        name: Build & Push Dockerfile
 | 
					              run: npm i
 | 
				
			||||||
        needs: build
 | 
					
 | 
				
			||||||
        uses: ztimson/actions/.github/workflows/docker.yaml@develop
 | 
					            - name: Build Project
 | 
				
			||||||
        with:
 | 
					              run: npm run build
 | 
				
			||||||
            repository: ${{github.server_url}}/${{github.repository}}.git
 | 
					
 | 
				
			||||||
            pass: ${{secrets.DEPLOY_TOKEN}}
 | 
					            - name: Upload Artifacts
 | 
				
			||||||
 | 
					              if: ${{inputs.artifacts}} != "false"
 | 
				
			||||||
 | 
					              uses: actions/upload-artifact@v3
 | 
				
			||||||
 | 
					              with:
 | 
				
			||||||
 | 
					                  name: website
 | 
				
			||||||
 | 
					                  path: dist
 | 
				
			||||||
 | 
					                  retention-days: 7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    tag:
 | 
				
			||||||
 | 
					        name: Tag Version
 | 
				
			||||||
 | 
					        needs: build
 | 
				
			||||||
 | 
					        runs-on: ubuntu-latest
 | 
				
			||||||
 | 
					        container: node
 | 
				
			||||||
 | 
					        steps:
 | 
				
			||||||
 | 
					            - name: Clone Repository
 | 
				
			||||||
 | 
					              uses: ztimson/actions/clone@develop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            - name: Get Version Number
 | 
				
			||||||
 | 
					              run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            - name: Tag Version
 | 
				
			||||||
 | 
					              uses: ztimson/actions/tag@develop
 | 
				
			||||||
 | 
					              with:
 | 
				
			||||||
 | 
					                  tag: ${{env.VERSION}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    publish:
 | 
				
			||||||
 | 
					        name: Build & Push Dockerfile
 | 
				
			||||||
 | 
					        needs: build
 | 
				
			||||||
 | 
					        uses: ztimson/actions/.github/workflows/docker.yaml@develop
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					            name: ztimson/291st
 | 
				
			||||||
 | 
					            repository: ${{github.server_url}}/${{github.repository}}.git
 | 
				
			||||||
 | 
					            pass: ${{secrets.DEPLOY_TOKEN}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user