From 8c2dd534b9790958927776bfe9a8f7298f986f81 Mon Sep 17 00:00:00 2001 From: servostar Date: Thu, 21 Nov 2024 16:00:11 +0100 Subject: [PATCH] cI: remove release action --- .gitea/workflows/release.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml deleted file mode 100644 index f2f6809..0000000 --- a/.gitea/workflows/release.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: release - -on: - push: - tags: - - 'v*.*.*' - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Check out repository code - uses: actions/checkout@v3 - - name: Install dependencies for Nix setup action - run: | - apt update -y - apt install sudo -y - - name: Setup Nix - uses: cachix/install-nix-action@v27 - with: - nix_path: nixpkgs=channel:nixos-unstable - - name: Run CI - run: nix-shell --run ./run-ci.sh - - name: Setup go - uses: https://github.com/actions/setup-go@v4 - with: - go-version: '>=1.20.1' - - name: Create release - id: create-release - uses: https://gitea.com/actions/release-action@main - with: - files: |- - example.pdf - api_key: '${{secrets.RELEASE_TOKEN}}'