mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: 📄 (PROD) Desplegando documentacion
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- release/next
|
|
|
|
jobs:
|
|
############ DOCUMENTATION BUILD ############
|
|
build-documentation:
|
|
name: Build Package
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
cache: 'yarn'
|
|
registry-url: https://registry.npmjs.org/
|
|
|
|
- run: corepack enable
|
|
|
|
- name: Install NPM Dependencies
|
|
run: yarn install --immutable --network-timeout 300000
|
|
|
|
- name: Add netlify
|
|
run: yarn add netlify-cli -D
|
|
|
|
- name: Create .env build file
|
|
run: |
|
|
touch packages/docs/.env
|
|
echo VITE_GITHUB_TOKEN=${{ secrets.COLLABORATORS_TOKEN }} >> packages/docs/.env
|
|
|
|
- name: Build and Deploy
|
|
run: |
|
|
cd packages/docs
|
|
netlify deploy --prod --build --site ${{ secrets.NETLIFY_SITE_ID }} --auth ${{ secrets.NETLIFY_AUTH_TOKEN }}
|