UI: Fix float entry on German systems #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: Development builds | |
concurrency: | |
group: devbuilds | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install native dependencies | |
run: sudo apt-get update && sudo apt-get install -y libgtk-3-dev g++-mingw-w64-x86-64 cmake libopenal1 | |
- name: Build | |
run: ./build.sh -j$(nproc) LinuxDaily --with-win64 | |
- name: Archive ubuntu amd64 build (Engine Only) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: librelancer-daily-ubuntu-amd64 | |
path: packaging/packages/librelancer-daily-ubuntu-amd64.tar.gz | |
- name: Archive ubuntu amd64 build (SDK) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: librelancer-sdk-daily-ubuntu-amd64 | |
path: packaging/packages/librelancer-sdk-daily-ubuntu-amd64.tar.gz | |
- name: Archive win64 build (Engine only) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: librelancer-daily-win64 | |
path: packaging/packages/librelancer-daily-win64.zip | |
- name: Archive win64 build (SDK) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: librelancer-sdk-daily-win64 | |
path: packaging/packages/librelancer-sdk-daily-win64.zip |