A GitHub Action to install Mesa3D from pal1000/mesa-dist-win on windows runners.
- uses: ssciwr/setup-mesa-dist-win@v3Optionally specify the release version, build type or deployment choice:
- uses: ssciwr/setup-mesa-dist-win@v3
with:
version: '26.0.3'
build-type: 'release-msvc'
deployment-choice: '1'To make a new release:
- update the version number in package.json
- run
pnpm installto install the dependencies and updatepnpm-lock.yaml - run
pnpm run packageto generate the bundled package indist - commit the changes including the
distfolder andpnpm-lock.yaml, then push - tag the commit with the full version number, e.g.
git tag v3.0.0git push origin v3.0.0
- move the major version tag, e.g. in this case
v3, to this commitgit tag -f v3git push origin v3 -f