mirror of
https://github.com/shadoll/vancouver.git
synced 2026-08-28 11:33:14 +00:00
72 lines
1.5 KiB
YAML
72 lines
1.5 KiB
YAML
name: Build and Deploy to GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
env:
|
|
NODE_ENV: production
|
|
|
|
- name: List build output
|
|
run: |
|
|
echo "=== Dist directory contents ==="
|
|
ls -la dist/
|
|
echo "=== Assets directory contents ==="
|
|
ls -la dist/assets/ || echo "No assets directory"
|
|
echo "=== Looking for background images ==="
|
|
find dist/ -name "*background*" -type f || echo "No background files found"
|
|
|
|
- name: Setup Pages
|
|
uses: actions/configure-pages@v4
|
|
if: github.ref == 'refs/heads/main'
|
|
continue-on-error: true
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
if: github.ref == 'refs/heads/main'
|
|
with:
|
|
path: './dist'
|
|
|
|
deploy:
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
if: github.ref == 'refs/heads/main'
|
|
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|