Build Release on Linux #7
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: Build Release on Linux | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: '6.6.1' | |
host: 'linux' | |
target: 'desktop' | |
arch: 'gcc_64' | |
dir: ${{ github.workspace }}/Qt | |
- name: Find Qt installation directory | |
id: find-qt-dir | |
run: echo "QT_DIR=$(find ${{ github.workspace }}/Qt -type d -name gcc_64)" >> $GITHUB_ENV | |
- name: Configure Qt environment | |
run: source $QT_DIR/bin/qt6-env.sh | |
- name: Install CMake | |
run: sudo apt-get install -y cmake | |
- name: Create build directory | |
run: cmake -DCMAKE_BUILD_TYPE=Release -S . -B build | |
- name: Build project | |
run: cmake --build build --config Release | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nepdate-calendar-linux | |
path: build/nepdate-calendar |