Skip to content

✏️ Fix PNPM version #37

✏️ Fix PNPM version

✏️ Fix PNPM version #37

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.18.0]
pnpm-version: [9.12.2]
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@v4
- name: ⚑️ Install, build, and upload
<<<<<<< HEAD

Check failure on line 37 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 37
uses: withastro/action@v2
=======
uses: withastro/action@v3
>>>>>>> 0.x
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@v4