Skip to content

Commit

Permalink
Added GitHub Pages workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vloothuis committed Sep 17, 2023
1 parent ce25d7b commit 82c0fae
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build and Deploy to GitHub Pages

on:
push:
branches:
- master

permissions:
contents: write

jobs:
build-and-deploy:
runs-on: ubuntu-latest

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

- name: Set PUBLIC_URL in .env
run: |
REPO_NAME=$(echo $GITHUB_REPOSITORY | cut -d'/' -f2)
echo "PUBLIC_URL=https://$(echo $GITHUB_REPOSITORY | cut -d'/' -f1).github.io/$REPO_NAME/" >> .env
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install dependencies and build
run: |
npm install
python -m pip install --upgrade pip
python -m pip install poetry
npm run dev:build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
2 changes: 1 addition & 1 deletion dist/framework/processing/py_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ function loadPackages() {
}
function installPortPackage() {
console.log('[ProcessingWorker] load port package');
return self.pyodide.runPythonAsync("\n import micropip\n await micropip.install(\"/port-0.0.0-py3-none-any.whl\", deps=False)\n import port\n ");
return self.pyodide.runPythonAsync("\n import micropip\n await micropip.install(\"../../port-0.0.0-py3-none-any.whl\", deps=False)\n import port\n ");
}

0 comments on commit 82c0fae

Please sign in to comment.