Merge pull request #287 from remyduthu/patch-1 #1218
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: | |
- master | |
schedule: | |
- cron: "0 0 * * *" # Daily at midnight. | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- run: deno task build --blogroll | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./out/www | |
- uses: actions/deploy-pages@v4 |