chore(QOV-1330): EKS ALB controller allow user to set replicas #1096
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: github pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache Node.js modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: website/node_modules | |
| key: ${{ runner.os }}-node-${{ hashFiles('website/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '12.x' | |
| - run: cd website && npm install && npm run-script build | |
| #- name: Install broken-link-checker | |
| # run: | | |
| # yarn add broken-link-checker-local | |
| #- name: Check broken links | |
| # run: | | |
| # blcl -g --filter-level 1 -ro build | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./website/build | |
| cname: hub.qovery.com |