viewer: Fix missing vsync; fixes horrible lag #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Version Info | |
run: | | |
rustc -Vv | |
cargo -Vv | |
- name: Build | |
run: | | |
cargo b --release | |
target/release/apicula.exe -V | |
- name: Zip | |
run: | | |
cd target/release | |
7z a ../../apicula-latest-windows.zip apicula.exe | |
- name: Tag | |
run: | | |
git tag --force continuous ${{ github.sha }} | |
git push --tags --force | |
- name: Release | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: "apicula-latest-windows.zip" | |
body: > | |
This is an automated build of the latest source code. | |
tag: continuous | |
token: ${{ secrets.GITHUB_TOKEN }} |