client/window: fix fullscreen framerate #217
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: snapshot | |
on: [push] | |
jobs: | |
snapshot: | |
runs-on: ubuntu-latest | |
container: debian:sid | |
steps: | |
- name: Install deps | |
run: | | |
apt-get update | |
apt-get install -y git build-essential cmake meson lua5.4 xorg-dev libgl1-mesa-dev libxkbcommon-dev mingw-w64 curl zip | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Add safe directory | |
run: git config --global --add safe.directory $PWD | |
- name: Build linux snapshot | |
run: | | |
./misc/snapshot.sh | |
- name: Build win32 snapshot | |
run: | | |
./misc/snapshot.sh win32 | |
- name: Build win64 snapshot | |
run: | | |
./misc/snapshot.sh win64 | |
- name: Upload snapshots | |
if: github.ref == 'refs/heads/master' | |
env: | |
SECRET: ${{ secrets.UPLOAD_TOKEN }} | |
run: | | |
./misc/upload.sh |