From 025d80365363a085ecec4cd6ca77324f74abc9f6 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 14 Mar 2024 04:19:03 +0200 Subject: [PATCH] Delete .github/workflows/CI.yml --- .github/workflows/CI.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index cdd3d16..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: CI/CD -on: - release: - types: [published] -jobs: - build_and_release: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup CMake - uses: jwlawson/actions-setup-cmake@v1.14 - - name: Setup Ninja - uses: seanmiddleditch/gha-setup-ninja@master - - name: Configure and build - run: | - cmake -G Ninja -B build - cd build - ninja - - name: Updoad file - uses: actions/upload-artifact@v4 - with: - name: libvalidation.a - path: ./build/libvalidation.a