fix: environment vars for deploy #47
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 | |
# on: | |
# push: | |
# tags: | |
# - '@caravan/coordinator**' | |
# branches: | |
# - main | |
on: [push, pull_request] | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAGES: true | |
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 | |
# the deploy action can't find the build directory if it's in the | |
# sub directory of the monorepo, even if we reference it correctly | |
# so we have to copy it to the root of the repo. | |
- name: Build | |
run: | | |
echo ${{ env.GITHUB_PAGES }} | |
npx turbo run build --force | |
cp -R apps/coordinator ./docs | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: docs |