Skip to content

Prod Deploy

Prod Deploy #35

Workflow file for this run

name: Prod Deploy
on:
workflow_dispatch:
jobs:
deploy:
if: ${{github.ref == 'refs/heads/prod'}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node v18
uses: actions/setup-node@v1
with:
node-version: v18.16.0
- uses: actions/cache@v3
with:
path: |
.next
.yarn/cache
./node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn export
- name: Deploy Gh-Pages 🚀
uses: hpcodecraft/[email protected]
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.DECOO_PAT }}
SRC_FOLDER: out
DEST_OWNER: decooio
DEST_REPO: cloud3-home-prod-deploy
DEST_BRANCH: main
DEST_FOLDER: docs