Workflows: update the branchs #1
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 Linux | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: '6.7.1' | |
- name: Generate Makefile | |
run: qmake -config release | |
- name: Build the project | |
run: make | |
- name: Package the application | |
run: linuxdeployqt DXUI-Installer -appimage | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: DXUI-Installer-Linux | |
path: DXUI-Installer.AppImage |