Replace Stefan with Ernest Kissiedu as new moderator (#868) #1838
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| schedule: | |
| - cron: "0 3 * * *" # daily, at 3am | |
| jobs: | |
| gravity: | |
| name: "Gravity" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: install @gravityci/cli | |
| run: npm i -g @gravityci/cli | |
| - name: Build | |
| uses: shalzz/zola-deploy-action@v0.21.0 | |
| env: | |
| BUILD_ONLY: true | |
| - name: Run Gravity | |
| run: gravityci "public/**/!(*.pdf|*.mp4|*.webm)" | |
| env: | |
| GRAVITY_TOKEN: ${{ secrets.GRAVITY_TOKEN }} |