-
Notifications
You must be signed in to change notification settings - Fork 17
35 lines (32 loc) · 918 Bytes
/
linux.yml
File metadata and controls
35 lines (32 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Linux build
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
jobs:
build:
# Run on an older Ubuntu to make flatpack happy
runs-on: ubuntu-18.04
steps:
- name: Check out
uses: actions/checkout@v2
- name: Install deps
run: sudo apt-get install libusb-1.0-0-dev icnsutils
- name: Get linuxdeployqt
run: wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
- name: Make linuxdeployqt executable
run: chmod a+x linuxdeployqt-continuous-x86_64.AppImage
- name: Install Qt
uses: jurplel/install-qt-action@v2
- name: build linux
run: ./dist_linux.sh
- name: Save artificat
uses: actions/upload-artifact@v2
with:
name: Appimage
path: build-dist-linux/PatternPaint-*-x86_64.tar.bz2