Fix: Incorrect directory path if tool is installed by package #36
Workflow file for this run
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 Qt5 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: sudo apt-get update && sudo apt-get install cmake qtbase5-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-qt5 | |
path: build/D1GraphicsTool |