Skip to content

try and move build artifact #22

try and move build artifact

try and move build artifact #22

Workflow file for this run

name: Deploy
on:
push:
tags:
- '@caravan/coordinator**'
# branches:
# - main
permissions:
contents: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
# To use Turborepo Remote Caching
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build
run: |
npx turbo run build
cp -R apps/coordinator ./build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build