From 0f9a40a08b988bba7728ef327b02230c8121d539 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 22 May 2026 07:51:08 +0200 Subject: [PATCH] Remove actions --- .gitea/workflows/build.yml | 37 ------------------------------------ .gitea/workflows/deploy.yaml | 29 ---------------------------- 2 files changed, 66 deletions(-) delete mode 100644 .gitea/workflows/build.yml delete mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml deleted file mode 100644 index eb86abe..0000000 --- a/.gitea/workflows/build.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Build - -on: - push: - pull_request: - branches: [master] - -jobs: - audit: - container: buildenv:6 - steps: - - uses: actions/checkout@v6 - - run: hlint src lib test - - test: - container: buildenv:6 - steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y pkg-config liblzma-dev - - uses: actions/checkout@v6 - - run: cabal update - - run: cabal test --test-show-details=streaming - - release: - container: buildenv:6 - steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y pkg-config liblzma-dev - - uses: actions/checkout@v6 - - run: cabal update - - run: cabal build diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml deleted file mode 100644 index dc34f1a..0000000 --- a/.gitea/workflows/deploy.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Deploy - -on: - push: - tags: - - '**' - -jobs: - release: - container: buildenv:6 - steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y pkg-config liblzma-dev - - uses: actions/checkout@v6 - - run: cabal update - - run: cabal build - - name: Archive - run: | - DISTRIBUTION=$(echo $GITHUB_REF_NAME | awk '{ gsub(/^v/, "slackbuilder-"); print $0 }') - cabal install --installdir=$DISTRIBUTION/bin --install-method=copy - strip $DISTRIBUTION/bin/slackbuilder - tar Jcvf $DISTRIBUTION.tar.xz $DISTRIBUTION - - uses: akkuman/gitea-release-action@v1 - with: - files: "*.tar.xz" - token: ${{ secrets.API_KEY }}