Remove actions

This commit is contained in:
2026-05-27 23:24:13 +02:00
parent 4c2210109f
commit f5e821e561
3 changed files with 0 additions and 49 deletions
-4
View File
@@ -1,4 +0,0 @@
{
gsub(/^v/, "slack-timedate-")
print $0
}
-23
View File
@@ -1,23 +0,0 @@
name: Build
on:
push:
branches:
- '**'
pull_request:
branches: [master]
jobs:
build:
runs-on: alpine
steps:
- name: Set up environment
shell: ash {0}
run: |
apk -U upgrade
apk add --no-cache git bash cmake build-base pkgconf glibmm2.66-dev dbus-dev
- uses: actions/checkout@v4
- name: Build
run: |
cmake -B build
make -C build
-22
View File
@@ -1,22 +0,0 @@
name: Deploy
on:
push:
tags:
- '**'
jobs:
deploy:
container: buildenv:5
steps:
- uses: actions/checkout@v4
- name: Archive
run: |
DISTRIBUTION=$(echo $GITHUB_REF_NAME | awk -f .gitea/deploy.awk)
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 }}