프로덕션 빌드에서 VITE_MAPTILER_KEY가 누락되어 OSM 폴백 스타일로 로드되던 문제 해결 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
992 B
YAML
40 lines
992 B
YAML
name: Build and Deploy Wing
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
|
|
- name: Configure npm registry
|
|
run: |
|
|
echo "registry=https://nexus.gc-si.dev/repository/npm-public/" > .npmrc
|
|
echo "//nexus.gc-si.dev/repository/npm-public/:_auth=${{ secrets.NEXUS_NPM_AUTH }}" >> .npmrc
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build web
|
|
env:
|
|
VITE_MAPTILER_KEY: ${{ secrets.MAPTILER_KEY }}
|
|
VITE_MAPTILER_BASE_MAP_ID: dataviz-dark
|
|
run: npm -w @wing/web run build
|
|
|
|
- name: Deploy to server
|
|
run: |
|
|
rm -rf /deploy/wing/*
|
|
cp -r apps/web/dist/* /deploy/wing/
|
|
echo "Deployed at $(date '+%Y-%m-%d %H:%M:%S')"
|
|
ls -la /deploy/wing/
|