From cc333f0efc2bb32dc02f5468fd209f1bbbd85756 Mon Sep 17 00:00:00 2001 From: Abhijit Hota Date: Tue, 5 Mar 2024 12:23:05 +0530 Subject: [PATCH] Delete .github/workflows/release-2204.yaml --- .github/workflows/release-2204.yaml | 53 ----------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .github/workflows/release-2204.yaml diff --git a/.github/workflows/release-2204.yaml b/.github/workflows/release-2204.yaml deleted file mode 100644 index bc25aa40b..000000000 --- a/.github/workflows/release-2204.yaml +++ /dev/null @@ -1,53 +0,0 @@ -name: basebuild 2204 - -on: - workflow_dispatch: - -jobs: - goreleaser: - runs-on: warpdev-ubuntu-2204-x64-4x - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 20.8.1 - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: '>=1.21.3' - - # This step usually is not needed because the /ui/dist is pregenerated locally - # but its here to ensure that each release embeds the latest admin ui artifacts. - # If the artificats differs, a "dirty error" is thrown - https://goreleaser.com/errors/dirty/ - - name: Build Admin dashboard UI - run: npm --prefix=./ui ci && npm --prefix=./ui run build - - # Temporary disable as the types can have random generated identifiers making it non-deterministic. - # - # # Similar to the above, the jsvm types are pregenerated locally - # # but its here to ensure that it wasn't forgotten to be executed. - # - name: Generate jsvm types - # run: go run ./plugins/jsvm/internal/types/types.go - - # The prebuilt golangci-lint doesn't support go 1.18+ yet - # https://github.com/golangci/golangci-lint/issues/2649 - # - name: Run linter - # uses: golangci/golangci-lint-action@v3 - - - name: Run tests - run: go test ./... - - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v3 - with: - distribution: goreleaser - version: latest - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}