From 293630345841a2302c9be76676e8fea1af931345 Mon Sep 17 00:00:00 2001 From: Steve Genoud Date: Mon, 14 Aug 2023 16:21:31 +0200 Subject: [PATCH] Add some CI to build everything --- .github/workflows/publish-studio.yml | 56 ++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/publish-studio.yml diff --git a/.github/workflows/publish-studio.yml b/.github/workflows/publish-studio.yml new file mode 100644 index 0000000..c111311 --- /dev/null +++ b/.github/workflows/publish-studio.yml @@ -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'