From cce3e435d5b3490ab36673567d74ff0919bf75c9 Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Wed, 1 Apr 2026 20:38:44 -0400 Subject: [PATCH] Remove duplicate workflow files (.yml -> .yaml) --- .github/workflows/ci.yml | 36 ----------------------------------- .github/workflows/release.yml | 32 ------------------------------- 2 files changed, 68 deletions(-) delete mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index ee5102a..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: ci - -on: - pull_request: - push: - branches: - - main - -jobs: - verify: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: pnpm - - - name: Set up pnpm - uses: pnpm/action-setup@v4 - with: - version: 10.33.0 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: "1.26.0" - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Verify - run: pnpm verify diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index d06bbba..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: release - -on: - push: - tags: - - "v*" - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: "1.26.0" - - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 - with: - distribution: goreleaser - version: "~> v2" - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}