Merge pull request #1465 from maxmind/rhatti/sco-8133-minfraud-dev-do… #1282
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: Hugo | |
| on: | |
| push: | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # 3.0.0 | |
| with: | |
| hugo-version: 'latest' | |
| extended: true | |
| - name: Install Dart Sass | |
| run: sudo snap install dart-sass | |
| - name: Build site | |
| run: ./build.sh | |
| env: | |
| CF_PAGES_URL: / |