Skip to content

⬆️ Upgrade the package manage #13

⬆️ Upgrade the package manage

⬆️ Upgrade the package manage #13

Workflow file for this run

name: CD
on:
push:
# Trigger the workflow every time you push to the `trunk` branch
branches:
- trunk
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
defaults:
run:
working-directory: ./apps/website
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
node-version: [20.13]
pnpm-version: [9.1]
name: 📦️ Build abi.js.org on ${{ matrix.node-version }}-${{ matrix.operating-system }}
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: 🍱 Install, build, and upload your site
uses: withastro/action@v2
with:
path: ./apps/website
node-version: ${{ matrix.node-version }}
package-manager: pnpm@${{ matrix.pnpm-version }}
deploy:
needs: build
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
name: 🚀 Deploy abi.js.org on ${{ matrix.node-version }}-${{ matrix.operating-system }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: 📂 Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4