chore(deps): Bump freya-skia-safe to v0.97.5 and bump to 0.4.0-rc.21 #1109
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 website | |
| on: | |
| push: | |
| paths: | |
| - 'website/**/*' | |
| - '.github/workflows/deploy_website.yml' | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 24 | |
| - name: Install pnpm | |
| run: npm install pnpm -g | |
| - name: Install dependencies | |
| working-directory: website | |
| run: pnpm i | |
| - name: Build Astro | |
| working-directory: website | |
| run: pnpm run build | |
| - name: Upload to Deno Deploy | |
| uses: denoland/deployctl@7bded90d0d09cd99bbfb513966146315db97618b # 1.13.1 | |
| with: | |
| project: freya-temp | |
| entrypoint: server/entry.mjs | |
| root: website/dist |