Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e480141e89 |
@@ -15,19 +15,19 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: windows
|
#- os: windows
|
||||||
arch: amd64
|
# arch: amd64
|
||||||
ext: .exe
|
# ext: .exe
|
||||||
- os: linux
|
#- os: linux
|
||||||
arch: amd64
|
# arch: amd64
|
||||||
ext: ""
|
# ext: ""
|
||||||
- os: linux
|
- os: linux
|
||||||
arch: arm64
|
arch: arm64
|
||||||
ext: ""
|
ext: ""
|
||||||
- os: linux
|
#- os: linux
|
||||||
arch: arm
|
# arch: arm
|
||||||
arm_version: 7
|
# arm_version: 7
|
||||||
ext: ""
|
# ext: ""
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
@@ -98,6 +98,7 @@ jobs:
|
|||||||
# 2. Create Directory Structure
|
# 2. Create Directory Structure
|
||||||
mkdir -p $BUILD_DIR/usr/bin
|
mkdir -p $BUILD_DIR/usr/bin
|
||||||
mkdir -p $BUILD_DIR/usr/share/$PKG_NAME
|
mkdir -p $BUILD_DIR/usr/share/$PKG_NAME
|
||||||
|
mkdir -p $BUILD_DIR/etc/systemd/system
|
||||||
mkdir -p $BUILD_DIR/DEBIAN
|
mkdir -p $BUILD_DIR/DEBIAN
|
||||||
|
|
||||||
# 3. Copy Files
|
# 3. Copy Files
|
||||||
@@ -116,10 +117,12 @@ jobs:
|
|||||||
cat <<EOF > $BUILD_DIR/etc/systemd/system/$PKG_NAME.service
|
cat <<EOF > $BUILD_DIR/etc/systemd/system/$PKG_NAME.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Slideshow Application Service
|
Description=Slideshow Application Service
|
||||||
After=network.target
|
After=graphical.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
|
Environment=DISPLAY=:0
|
||||||
|
Environment=XAUTHORITY=/home/youruser/.Xauthority
|
||||||
ExecStart=/usr/bin/$PKG_NAME
|
ExecStart=/usr/bin/$PKG_NAME
|
||||||
WorkingDirectory=/usr/share/$PKG_NAME
|
WorkingDirectory=/usr/share/$PKG_NAME
|
||||||
Restart=always
|
Restart=always
|
||||||
|
|||||||
Reference in New Issue
Block a user