Skip to content

Workflows: update the branchs #1

Workflows: update the branchs

Workflows: update the branchs #1

Workflow file for this run

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