Skip to content

🧱 Use Qwik instead of Solid #34

🧱 Use Qwik instead of Solid

🧱 Use Qwik instead of Solid #34

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
environment:
name: production
url: https://sikessem.github.io
strategy:
fail-fast: true
matrix:
operating-system: [ubuntu-latest]
node-version: [20.10.0]
pnpm-version: [8.10.5]
name: πŸš€ Deploy sikessem.github.io to Node-${{ matrix.node-version }} and build with pnpm@${{ matrix.pnpm-version }} on ${{ matrix.operating-system }}
steps:
- name: 🚚 Checkout the repository
uses: actions/checkout@v3
- name: ⚑️ Install, build, and upload
uses: withastro/action@v1
with:
node-version: ${{ matrix.node-version }}
package-manager: pnpm@${{ matrix.pnpm-version }}
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: πŸ“‚ Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1