Skip to content

Update OOPSLA examples for resubmission #60

Update OOPSLA examples for resubmission

Update OOPSLA examples for resubmission #60

Workflow file for this run

name: Deploy for OOPSLA
on:
push: { branches: [oopsla] }
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
target: wasm32-unknown-unknown
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- run: |
mkdir -p gh-pages
- run: |
(cd web && make deps && make build)
cp -r web/packages/app/dist/. gh-pages
- uses: JamesIves/github-pages-deploy-action@v4
with:
folder: gh-pages
branch: gh-pages
git-config-name: OOPSLA-xfunc
git-config-email: '<>'
repository-name: OOPSLA-xfunc/OOPSLA-xfunc.github.io
ssh-key: ${{ secrets.OOPSLA_SSH_KEY }}
commit-message: 'Deploy artifact'
single-commit: true