Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: playground deploy #337

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions .github/workflows/deploy-playground.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Simple workflow for deploying static content to Cloudflare Pages
name: Deploy Playground

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: ubuntu-latest
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
deployments: write
Expand All @@ -22,7 +28,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"
dotnet-version: "8.0.x" # SDK Version to use; x will use the latest version of the 7.0 channel
dotnet-quality: 'preview'

- name: Build Playground
Expand All @@ -32,11 +38,13 @@ jobs:
yarn build:site
working-directory: ./playground/

- name: Install Wrangler
run: npm install -g wrangler

- name: Deploy with Wrangler
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: |
wrangler pages publish ./playground/dist --project-name bebopc-playground --branch master
- name: Deploy Playground
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: bebopc-playground
directory: ${{github.workspace}}/playground/dist
# Optional: Enable this if you want to have GitHub Deployments triggered
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
branch: master
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -294,3 +294,4 @@ go.work
.chord
dist
*.chord
playground/src/bebopc/bebopc.bin
4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dist"
],
"scripts": {
"build:compiler": "../scripts/build-wasi.sh && cp -f ../bin/compiler/Release/artifacts/wasi-wasm/AppBundle/bebopc.wasm ./src/bebopc/bebopc.wasm",
"build:compiler": "../scripts/build-wasi.sh && cp -f ../bin/compiler/Release/artifacts/wasi-wasm/AppBundle/bebopc.wasm ./src/bebopc/bebopc.bin",
"dev": "vite",
"build:site": "NODE_ENV=production yarn build:compiler && vite build",
"preview:site": "vite preview",
Expand Down Expand Up @@ -62,4 +62,4 @@
"vite-plugin-static-copy": "^1.0.0",
"vitest": "^1.0.4"
}
}
}
2 changes: 1 addition & 1 deletion playground/src/bebopc/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import WASI, { createFileSystem } from "wasi-js";
import browserBindings from "wasi-js/dist/bindings/browser";
import { WASIExitError, WASIFileSystem } from "wasi-js/dist/types";

import bebopcWasmUrl from "./bebopc.wasm?url";
import bebopcWasmUrl from "./bebopc.bin?url";
import { WorkerResponse } from "./types";

const decoder = new TextDecoder();
Expand Down
Loading