Config: Open in home directory if app is being run for the 1st time #361
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: Linux Qt6 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: sudo apt-get update && sudo apt-get install cmake qt6-base-dev libgl1-mesa-dev | |
- name: configure | |
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo | |
- name: make | |
run: cmake --build build -j $(nproc) | |
- name: Upload-Package | |
if: ${{ !env.ACT }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: D1GraphicsTool-Linux-x64 | |
path: build/D1GraphicsTool |