mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
name: Deploy to NuxtHub
|
|
on: push
|
|
|
|
jobs:
|
|
deploy:
|
|
name: "Deploy to NuxtHub"
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: ${{ github.ref == 'refs/heads/main' && 'production' || 'preview' }}
|
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'pnpm'
|
|
|
|
- name: Install build tools
|
|
run: sudo apt-get update && sudo apt-get install -y build-essential
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --unsafe-perm
|
|
|
|
- name: Rebuild better-sqlite3 bindings
|
|
run: pnpm rebuild better-sqlite3
|
|
|
|
- name: Build application
|
|
run: pnpm run build
|
|
|
|
- name: Deploy to NuxtHub
|
|
uses: nuxt-hub/action@v1
|
|
id: deploy
|