Correct description free link for lighthouse score #364
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: Deploy Prod | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build_and_deploy_prod: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout main | |
| uses: wykies/checkout@main | |
| with: | |
| submodules: recursive | |
| - name: Build and deploy | |
| uses: wykies/zola-deploy-action@master | |
| env: | |
| OUT_DIR: docs | |
| BUILD_DIR: . | |
| PAGES_BRANCH: gh-pages | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |