Compare commits

...

2 Commits
v2.0 ... master

Author SHA1 Message Date
c21f6d2b64
Make README generic, accounting for various DEs
All checks were successful
Build / build (push) Successful in 18s
2024-07-14 11:35:37 +02:00
29434bc41e
Add a deployment job
All checks were successful
Build / build (push) Successful in 14s
Deploy / deploy (push) Successful in 4s
2024-07-13 11:58:20 +02:00
2 changed files with 31 additions and 5 deletions

View File

@ -0,0 +1,22 @@
name: Deploy
on:
push:
tags:
- '**'
jobs:
deploy:
runs-on: buildenv
steps:
- uses: actions/checkout@v4
- name: Archive
run: |
DISTRIBUTION=$(echo $GITHUB_REF_NAME | awk '{ gsub(/^v/, "slack-timedate-"); print $0 }')
ln -s . $DISTRIBUTION
touch $DISTRIBUTION.tar.xz
tar --exclude="${DISTRIBUTION}/${DISTRIBUTION}*" --exclude-vcs -Jcvhf $DISTRIBUTION.tar.xz $DISTRIBUTION
- uses: akkuman/gitea-release-action@v1
with:
files: "*.tar.xz"
token: ${{ secrets.API_KEY }}

View File

@ -1,10 +1,14 @@
# slack-timedate
This program implements timedated1 interface from systemd what is
required by GNOME Control Center for now.
slack-timedate's purpose is to make it possible to enjoy full GNOME
functionality on Slackware Linux which doesn't use systemd as its
init-system.
This program implements timedated1 interface from systemd that is
required by GNOME Control Center and can be used by KDE Settings.
slack-timedate's purpose is to make it possible to enjoy full desktop
environment functionality on Slackware Linux which doesn't use
systemd as its init-system.
slack-timedate supports Slackware's System V style init system as well
as s6.
## Installation