mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-17 20:05:25 +02:00
- Renamed the build preview workflow for clarity. - Removed unnecessary permissions and commented out deployment steps in the build workflow. - Introduced a new deploy preview workflow that triggers on successful completion of the build workflow, handling artifact download and deployment to Cloudflare Pages.
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
name: Build Preview Deployment
|
|
|
|
n:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
name: Build and Deploy Preview
|
|
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: Deploy to Cloudflare Pages
|
|
# uses: AdrianGonz97/refined-cf-pages-action@v1
|
|
# with:
|
|
# apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
# accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
# projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
|
|
# deploymentName: Preview
|
|
# directory: 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 }}"
|
|
# echo "Event name: ${{ github.event_name }}"
|
|
# echo "Event type: ${{ github.event.action }}" |