Updated angular version to latest
This commit is contained in:
		
							
								
								
									
										33
									
								
								.github/workflows/functions.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										33
									
								
								.github/workflows/functions.yaml
									
									
									
									
										vendored
									
									
								
							@@ -2,23 +2,24 @@ name: Build Functions
 | 
			
		||||
run-name: Build Functions
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    paths:
 | 
			
		||||
      - 'functions/**'
 | 
			
		||||
    push:
 | 
			
		||||
        paths:
 | 
			
		||||
            - 'firebase/**'
 | 
			
		||||
            - 'functions/**'
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    name: Build NPM Project
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    container: node
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Clone Repository
 | 
			
		||||
        uses: ztimson/actions/clone@develop
 | 
			
		||||
    build:
 | 
			
		||||
        name: Build NPM Project
 | 
			
		||||
        runs-on: ubuntu-latest
 | 
			
		||||
        container: node
 | 
			
		||||
        steps:
 | 
			
		||||
            -   name: Clone Repository
 | 
			
		||||
                uses: ztimson/actions/clone@develop
 | 
			
		||||
 | 
			
		||||
      - name: Install Dependencies
 | 
			
		||||
        run: npm i
 | 
			
		||||
        working-directory: functions
 | 
			
		||||
            -   name: Install Dependencies
 | 
			
		||||
                run: npm i
 | 
			
		||||
                working-directory: functions
 | 
			
		||||
 | 
			
		||||
      - name: Build Project
 | 
			
		||||
        run: npm run build
 | 
			
		||||
        working-directory: functions
 | 
			
		||||
            -   name: Build Project
 | 
			
		||||
                run: npm run build
 | 
			
		||||
                working-directory: functions
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										84
									
								
								.github/workflows/website.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										84
									
								
								.github/workflows/website.yaml
									
									
									
									
										vendored
									
									
								
							@@ -2,46 +2,56 @@ name: Build Website
 | 
			
		||||
run-name: Build Website
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    paths-ignore:
 | 
			
		||||
      - 'functions/**'
 | 
			
		||||
    push:
 | 
			
		||||
        paths-ignore:
 | 
			
		||||
            - 'firebase/**'
 | 
			
		||||
            - 'functions/**'
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    name: Build NPM Project
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    container: node
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Clone Repository
 | 
			
		||||
        uses: ztimson/actions/clone@develop
 | 
			
		||||
    build:
 | 
			
		||||
        name: Build NPM Project
 | 
			
		||||
        runs-on: ubuntu-latest
 | 
			
		||||
        container: node
 | 
			
		||||
        steps:
 | 
			
		||||
            -   name: Clone Repository
 | 
			
		||||
                uses: ztimson/actions/clone@develop
 | 
			
		||||
 | 
			
		||||
      - name: Install Dependencies
 | 
			
		||||
        run: npm i
 | 
			
		||||
            -   name: Install Dependencies
 | 
			
		||||
                run: npm i
 | 
			
		||||
 | 
			
		||||
      - name: Build Project
 | 
			
		||||
        run: npm run build
 | 
			
		||||
            -   name: Build Project
 | 
			
		||||
                run: npm run build
 | 
			
		||||
 | 
			
		||||
      - name: Upload Artifacts
 | 
			
		||||
        if: ${{inputs.artifacts}} != "false"
 | 
			
		||||
        uses: actions/upload-artifact@v3
 | 
			
		||||
            -   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: 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}}
 | 
			
		||||
            name: ztimson/map-alliance
 | 
			
		||||
            repository: ${{github.server_url}}/${{github.repository}}.git
 | 
			
		||||
            pass: ${{secrets.DEPLOY_TOKEN}}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user