Skip to content

placing works sometimes, scaling is weird #7

placing works sometimes, scaling is weird

placing works sometimes, scaling is weird #7

Workflow file for this run

name: Deploy
on: push
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
pages: write # To push to a GitHub Pages site
id-token: write # To update the deployment status
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt update
sudo apt install pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev libgtk-3-dev clang
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
toolchain: nightly
- uses: jetli/trunk-action@v0.5.0
- name: Build
run: |
export RUSTFLAGS="--cfg=web_sys_unstable_apis"
trunk build --public-url /wavefront/
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4