summaryrefslogtreecommitdiff
path: root/.gitea
diff options
context:
space:
mode:
Diffstat (limited to '.gitea')
-rw-r--r--.gitea/deploy.awk4
-rw-r--r--.gitea/workflows/build.yaml23
-rw-r--r--.gitea/workflows/deploy.yaml22
3 files changed, 0 insertions, 49 deletions
diff --git a/.gitea/deploy.awk b/.gitea/deploy.awk
deleted file mode 100644
index d330a5b..0000000
--- a/.gitea/deploy.awk
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- gsub(/^v/, "slack-timedate-")
- print $0
-}
diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml
deleted file mode 100644
index 684e638..0000000
--- a/.gitea/workflows/build.yaml
+++ /dev/null
@@ -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
diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml
deleted file mode 100644
index e60bec8..0000000
--- a/.gitea/workflows/deploy.yaml
+++ /dev/null
@@ -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 }}