mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Added permissions for reading contents, actions, and writing pull requests. - Set artifact retention period to 1 day for the preview build.
42 lines
892 B
YAML
42 lines
892 B
YAML
name: Build Preview Deployment
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
build-preview:
|
|
runs-on: ubuntu-latest
|
|
name: Build Preview Site and Upload Build Artifact
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
pull-requests: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 8
|
|
|
|
- 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
|
|
retention-days: 1 |