Skip to content

Commit

Permalink
Add some CI to build everything
Browse files Browse the repository at this point in the history
  • Loading branch information
sgenoud committed Aug 14, 2023
1 parent bc9f766 commit b17eb2c
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/publish-studio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
on: [push]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write

name: Publish to Cloudflare Pages

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16

- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 7
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Build packages
run: pnpm prepare-packages

- name: Build the studio
run: cd packages/studio && pnpm build

- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_PAGES_ACCESS }}
accountId: d0e0387dd16b671a301d1ce6e7b73609
projectName: replicad-studio
directory: packages/studio/dist
wranglerVersion: '3'

0 comments on commit b17eb2c

Please sign in to comment.