-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
188 additions
and
48 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
on: | ||
workflow_dispatch: | ||
create: | ||
tags: | ||
- 'v*' | ||
name: Build Flatpak (Stable) | ||
jobs: | ||
flatpak-builder: | ||
name: "Flatpak Builder" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: bilelmoussaoui/flatpak-github-actions:kde-5.15 | ||
options: --privileged | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: bilelmoussaoui/flatpak-github-actions@v2 | ||
with: | ||
bundle: "thefile.flatpak" | ||
manifest-path: "dist/com.vicr123.thefile.yml" | ||
- shell: bash | ||
env: | ||
REPO_TOKEN: ${{ secrets.REPO_TOKEN }} | ||
REPO_LOCATION: https://flatpak.vicr123.com | ||
REPO_NAME: stable | ||
run: | | ||
sudo dnf install -y python3-aiohttp python3-tenacity python3-gobject | ||
curl https://github.com/flatpak/flat-manager/releases/download/0.3.7/flat-manager-client -L > flat-manager-client | ||
chmod +x flat-manager-client | ||
./flat-manager-client push --commit --publish $(./flat-manager-client create $REPO_LOCATION $REPO_NAME) repo |
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
Binary file not shown.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
app-id: com.vicr123.thefile | ||
runtime: org.kde.Platform | ||
runtime-version: '5.15' | ||
sdk: org.kde.Sdk | ||
command: thefile | ||
finish-args: | ||
- --socket=wayland | ||
- --socket=fallback-x11 | ||
- --share=network | ||
- --filesystem=host | ||
- --device=all | ||
- --system-talk-name=org.freedesktop.UDisks2 | ||
cleanup: | ||
- '/include' | ||
- '/qt' | ||
- '/share/man' | ||
- '/share/the-libs' | ||
- '/bin/tltrdesktop' | ||
- '/lib/debug' | ||
- '/lib/pkgconfig' | ||
- '/share/applications/com.vicr123.thefrisbee.desktop' | ||
- '/bin/thefrisbee' | ||
modules: | ||
- name: the-libs | ||
buildsystem: qmake | ||
sources: | ||
- type: git | ||
url: https://github.com/vicr123/the-libs | ||
branch: master | ||
- name: contemporary | ||
buildsystem: qmake | ||
config-opts: | ||
- THELIBS_BUILDTOOLS_PATH = /app/share/the-libs/pri | ||
- THELIBS_INSTALL_QT_PLUGINS = /app/lib/qt/plugins | ||
- '-after' | ||
- QT -= thelib | ||
- QT += dbus | ||
- LIBS += -L/app/lib -lthe-libs | ||
- INCLUDEPATH += /app/include/the-libs | ||
sources: | ||
- type: git | ||
url: https://github.com/vicr123/contemporary-theme | ||
branch: master | ||
- name: contemporary-icons | ||
buildsystem: simple | ||
build-commands: | ||
- mkdir -p /app/share/icons/contemporary | ||
- cp -r * /app/share/icons/contemporary/ | ||
sources: | ||
- type: git | ||
url: https://github.com/vicr123/contemporary-icons | ||
branch: blueprint | ||
- name: libtdesktopenvironment | ||
buildsystem: qmake | ||
builddir: true | ||
config-opts: | ||
- THELIBS_BUILDTOOLS_PATH = /app/share/the-libs/pri | ||
- THELIBS_INSTALL_SETTINGS = /app/etc | ||
- THELIBS_INSTALL_QT_PLUGINS = /app/lib/qt/plugins | ||
- '-after' | ||
- QT -= thelib | ||
- QT += dbus | ||
- LIBS += -L/app/lib -lthe-libs | ||
- INCLUDEPATH += /app/include/the-libs | ||
sources: | ||
- type: git | ||
url: https://github.com/vicr123/libtdesktopenvironment | ||
- name: thefrisbee | ||
buildsystem: qmake | ||
builddir: true | ||
config-opts: | ||
- THELIBS_BUILDTOOLS_PATH = /app/share/the-libs/pri | ||
- THELIBS_INSTALL_SETTINGS = /app/etc | ||
- '-after' | ||
- QT -= thelib | ||
- QT += dbus | ||
- LIBS += -L/app/lib -lthe-libs | ||
- INCLUDEPATH += /app/include/the-libs | ||
sources: | ||
- type: git | ||
url: https://github.com/vicr123/thefrisbee | ||
branch: master | ||
- name: thefile | ||
buildsystem: qmake | ||
builddir: true | ||
config-opts: | ||
- THELIBS_BUILDTOOLS_PATH = /app/share/the-libs/pri | ||
- THELIBS_INSTALL_SETTINGS = /app/etc | ||
- '-after' | ||
- QT -= thelib frisbee tdesktopenvironment | ||
- QT += dbus | ||
- LIBS += -L/app/lib -lthe-libs -lthefrisbee -ltdesktopenvironment | ||
- INCLUDEPATH += /app/include/the-libs /app/include/libtdesktopenvironment /app/include/libthefrisbee | ||
- SUBDIRS -= appproj | ||
sources: | ||
- type: git | ||
url: https://github.com/vicr123/thefile | ||
branch: master |
Oops, something went wrong.