From 8bea9ee6a831c43a2085786238d19e00d9343590 Mon Sep 17 00:00:00 2001 From: Mostafa Moradian Date: Mon, 4 Dec 2023 02:19:51 +0100 Subject: [PATCH] Remove unused code --- .github/workflows/release.yaml | 2 -- Makefile | 8 -------- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 38d309a..269f881 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,8 +26,6 @@ jobs: - name: Build and release binaries run: | make build-release - - name: Generate release checksums - run: make generate-release-checksums - name: Create release and add artifacts uses: softprops/action-gh-release@v1 with: diff --git a/Makefile b/Makefile index 1e10d7e..4defe5c 100644 --- a/Makefile +++ b/Makefile @@ -80,11 +80,3 @@ build-windows-arm64: @sha256sum dist/gatewayd-plugin-cache-windows-arm64-${VERSION}.zip | sed 's/dist\///g' >> dist/checksums.txt build-release: tidy create-build-dir build-linux-amd64 build-linux-arm64 build-darwin-amd64 build-darwin-arm64 build-windows-amd64 build-windows-arm64 - -generate-release-checksums: - @sha256sum gatewayd-plugin-cache-linux-amd64-${VERSION}.tar.gz > checksums.txt - @sha256sum gatewayd-plugin-cache-linux-arm64-${VERSION}.tar.gz >> checksums.txt - @sha256sum gatewayd-plugin-cache-darwin-amd64-${VERSION}.tar.gz >> checksums.txt - @sha256sum gatewayd-plugin-cache-darwin-arm64-${VERSION}.tar.gz >> checksums.txt - @sha256sum gatewayd-plugin-cache-windows-amd64-${VERSION}.zip >> checksums.txt - @sha256sum gatewayd-plugin-cache-windows-arm64-${VERSION}.zip >> checksums.txt