mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
Refactor GitHub workflow: uncomment build preview steps for improved deployment process and clarity.
This commit is contained in:
58
.github/workflows/build-preview.yml
vendored
58
.github/workflows/build-preview.yml
vendored
@@ -1,35 +1,35 @@
|
||||
# name: Build Preview Deployment
|
||||
name: Build Preview Deployment
|
||||
|
||||
# concurrency:
|
||||
# group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
||||
# cancel-in-progress: true
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
# on:
|
||||
# pull_request:
|
||||
# types: [opened, synchronize]
|
||||
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
|
||||
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: Install dependencies
|
||||
working-directory: app
|
||||
run: pnpm install
|
||||
|
||||
# - name: Build
|
||||
# working-directory: app
|
||||
# run: pnpm build
|
||||
- name: Build
|
||||
working-directory: app
|
||||
run: pnpm build
|
||||
|
||||
# - name: Upload build artifact
|
||||
# uses: actions/upload-artifact@v4
|
||||
# with:
|
||||
# name: preview-build
|
||||
# path: app/dist
|
||||
- name: Upload build artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: preview-build
|
||||
path: app/dist
|
||||
Reference in New Issue
Block a user