From 0feb2012bc9f63ce922409864570df689193c2f1 Mon Sep 17 00:00:00 2001 From: Jakub Holcman Date: Sun, 11 Aug 2024 17:04:24 +0200 Subject: [PATCH] build: remove workflows --- .github/workflows/build-binaries.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/build-binaries.yml diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml deleted file mode 100644 index 2feb0c3..0000000 --- a/.github/workflows/build-binaries.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Build go binaries - -# on events -on: - release: - types: - - created - -# workflow tasks -jobs: - generate: - name: Generate cross-platform builds - runs-on: ubuntu-latest - steps: - - name: Checkout the repository - uses: actions/checkout@v2 - - name: Generate build files - uses: thatisuday/go-cross-build@v1.0.2 - with: - platforms: 'linux/amd64, darwin/amd64, windows/amd64' - package: '' - name: 'ncs-pkg-bumper' - compress: 'true' - dest: 'dist' -