From 25b97b19719981e0ed9cf13b28aa2eab3fcf2931 Mon Sep 17 00:00:00 2001 From: mhha Date: Thu, 29 Jan 2026 16:57:00 +0900 Subject: [PATCH] chore: remove redundant dev-release workflow Closes #50 --- .github/workflows/dev-release.yml | 54 ------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflows/dev-release.yml diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml deleted file mode 100644 index d60cb2e11..000000000 --- a/.github/workflows/dev-release.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: "Dev Branch Release" - -on: - push: - tags: - - v* # action for tag starts with v - -jobs: - build: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.22.0' - - - name: Setup packages - run: | - sudo apt-get update - sudo apt-get install -y libjemalloc-dev liblz4-dev libsnappy-dev libzstd-dev libudev-dev - sudo apt remove -y bzip2 libbz2-dev zlib1g-dev - - - name: Build binary - run: make gstable - - - name: Set version - run: | - GETH_VERSION=$(build/bin/gstable version | awk '/^Version/{ print $2 }') - COMMIT_HASH=$(echo ${{ github.sha }} | cut -c1-8) - TAG_NAME="${{ github.ref_name }}" - echo "RELEASE_VERSION=${GETH_VERSION}-${COMMIT_HASH}" >> "$GITHUB_ENV" - echo "TAG_NAME=${TAG_NAME}" >> "$GITHUB_ENV" - echo "Creating release for version: ${GETH_VERSION}-${COMMIT_HASH} with tag: ${TAG_NAME}" - - - name: Create tarball - run: | - mkdir -p release - cp build/bin/gstable release/ - cd release - tar -czf "gstable-${{ env.RELEASE_VERSION }}-linux-amd64.tar.gz" gstable - cd .. - ls -la release/ - mv "release/gstable-${{ env.RELEASE_VERSION }}-linux-amd64.tar.gz" . - ls -la gstable-${{ env.RELEASE_VERSION }}-linux-amd64.tar.gz - - - name: Create Release - uses: softprops/action-gh-release@v2.0.5 - with: - name: WEMIX Build (${{ env.RELEASE_VERSION }}) - tag_name: ${{ env.TAG_NAME }} - draft: true - files: gstable-${{ env.RELEASE_VERSION }}-linux-amd64.tar.gz