mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Removed commented-out deployment steps for Cloudflare Pages to enhance clarity and focus on the build process. - Maintained the artifact upload step to ensure build outputs are preserved.
35 lines
757 B
YAML
35 lines
757 B
YAML
name: Build Preview Deployment
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
build-preview:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 8
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install dependencies
|
|
working-directory: app
|
|
run: pnpm install
|
|
|
|
- name: Build
|
|
working-directory: app
|
|
run: pnpm build
|
|
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: preview-build
|
|
path: app/dist |