mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-03 21:15:24 +02:00
- Added an ID to the artifact upload step for better tracking. - Enhanced the verification step to include workflow and repository information. - Updated permissions to allow writing actions in the deploy workflow. - Added debug information to the deploy workflow for better visibility of event details.
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
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: write
|
|
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: List build output
|
|
run: ls -la app/dist
|
|
|
|
- name: Upload build artifact
|
|
id: upload-artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: preview-build
|
|
path: app/dist
|
|
retention-days: 1
|
|
|
|
- name: Verify artifact upload
|
|
run: |
|
|
echo "Artifact upload completed"
|
|
echo "Workflow ID: ${{ github.run_id }}"
|
|
echo "Repository: ${{ github.repository }}" |