feat: Add numerous new blueprint templates for various applications #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy PR previews | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
concurrency: preview-${{ github.ref }} | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Si no tienes build, solo copia los archivos | |
- name: Prepare static preview folder | |
run: | | |
mkdir -p preview | |
cp meta.json preview/ | |
cp -r blueprints preview/ | |
# Despliega el preview usando el action | |
- uses: rossjrw/pr-preview-action@v1 | |
with: | |
source-dir: preview |