Skip to content

Commit

Permalink
feat: working web assembly based playground
Browse files Browse the repository at this point in the history
  • Loading branch information
rabraghib committed Jun 6, 2024
1 parent 724eeb8 commit 3fe0872
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
bin/*
deploy-website:
if: needs.release-up.outputs.released == 'true'
needs: release-up
needs: [release-up, build-deploy]
runs-on: ubuntu-20.04
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
Expand All @@ -77,7 +77,11 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: wasm-build
path: website/public/darijascript-bin-web.wasm
path: website/public/temp

- name: Copy wasm build to website/public
run: mv website/public/temp/darijascript-bin-web.wasm website/public/darijascript-bin-web.wasm

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
Expand Down
1 change: 1 addition & 0 deletions website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ yarn-error.log*
next-env.d.ts

public/darijascript-bin-web.wasm
public/temp/

0 comments on commit 3fe0872

Please sign in to comment.