From 1a307b9f449e3f4bed084a31e8c9b846e2bf1758 Mon Sep 17 00:00:00 2001 From: Yvan Sraka Date: Tue, 25 Jul 2023 16:33:52 +0200 Subject: [PATCH] Delete release.yml --- .github/workflows/release.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index cc48f04..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build and Release - -on: - push: - tags: - - '*' - -jobs: - build-and-release: - strategy: - matrix: - os: [ubuntu-latest, macos-latest] - - runs-on: ${{ matrix.os }} - - permissions: - contents: write - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Nix - uses: cachix/install-nix-action@v20 - - - name: Build - run: nix build .# --accept-flake-config - - - name: Create Release and Upload Release Assets - uses: ncipollo/release-action@v1 - with: - artifacts: "result/bin/*" - token: ${{ secrets.GITHUB_TOKEN }} - draft: false