Update build.

pull/8/head
Yinan Qin 3 years ago
parent d7e038e300
commit 253cfd16ff
No known key found for this signature in database
GPG Key ID: 685BD0487668AFA8

@ -0,0 +1,52 @@
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Ubuntu:
name: Ubuntu latest build
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Add Simple Linux DE repository
run : |
sudo mkdir -p /etc/apt/sources.list.d
sudo bash -c "echo 'deb [trusted=yes] https://gitcode.net/simple-linux-de/debserver/-/raw/master unstable main contrib non-free' > /etc/apt/sources.list.d/simplelinux.list"
- name: Update repository
run: sudo apt update -y
- name: Install the basic dev packages
run: sudo apt install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++ cutefish-core cutefish-kwin-plugins cutefish-qt-plugins fishui libcutefish
- name: Install build dependencies
run: sudo mk-build-deps -i -t "apt-get --yes" -r
- name: Build Package
run: sudo dpkg-buildpackage -b -uc -us -nc -tc -j$(nproc)
- name: Get current date
id: date
run: echo "::set-output name=today::$(date +'%Y-%m-%d-%s')"
- name: Upload build
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "autobuild"
prerelease: true
title: "Development Build ${{ steps.date.outputs.today }}"
files: |
../**/*.deb
../**/*.ddeb
../**/*.buildinfo
../**/*.changes

6
debian/changelog vendored

@ -1,3 +1,9 @@
texteditor (0.8-alpha1) UNRELEASED; urgency=low
* Move Project to Simple Linux DE
-- The Simple Linux DE Develop Group <simplelinux@latex.ga> Mon, 30 Jan 2023 00:00:00 +0800
texteditor (0.7-1) UNRELEASED; urgency=medium
* Initial Release.

6
debian/control vendored

@ -1,12 +1,12 @@
Source: texteditor
Section: devel
Priority: optional
Maintainer: CutefishOS <cutefishos@foxmail.com>
Maintainer: The Simple Linux DE Develop Group <simplelinux@latex.ga>
Build-Depends: cmake,
debhelper (>= 9),
libkf5syntaxhighlighting-dev
libkf5syntaxhighlighting-dev
Standards-Version: 4.5.0
Homepage: https://github.com/cutefishos/texteditor
Homepage: https://github.com/Simple-Linux-DE/texteditor
Package: texteditor
Architecture: any

2
debian/copyright vendored

@ -1,7 +1,7 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: texteditor-0.7
Upstream-Contact: <preferred name and address to reach the upstream project>
Source: <url://example.com>
Source: https://github.com/Simple-Linux-DE
Files: *
Copyright: <years> <put author's name and email here>

Loading…
Cancel
Save