diff --git a/.github/workflows/qa-rpc-integration-tests.yml b/.github/workflows/qa-rpc-integration-tests.yml index 6c4a847b698..5bcd4b3af83 100644 --- a/.github/workflows/qa-rpc-integration-tests.yml +++ b/.github/workflows/qa-rpc-integration-tests.yml @@ -2,17 +2,17 @@ name: QA - RPC Integration Tests on: workflow_dispatch: # Run manually - push: - branches: - - main - pull_request: - branches: - - main - types: - - opened - - reopened - - synchronize - - ready_for_review +# push: +# branches: +# - main +# pull_request: +# branches: +# - main +# types: +# - opened +# - reopened +# - synchronize +# - ready_for_review jobs: integration-test-suite: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ea90b60a86..2d5f72e87d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,11 +1,11 @@ name: Release env: - APPLICATION: "erigon" + APPLICATION: "bsc-erigon" BUILDER_IMAGE: "ghcr.io/goreleaser/goreleaser-cross:v1.22.7" DOCKER_BASE_IMAGE: "alpine:3.20.3" APP_REPO: "node-real/bsc-erigon" - PACKAGE: "github.com/node-real/bsc-erigon" + PACKAGE: "github.com/erigontech/erigon" DOCKERHUB_REPOSITORY: "node-real/bsc-erigon" DOCKERFILE_PATH: "./Dockerfile.release" GITHUB_AUTOMATION_EMAIL: "github-automation@erigon.tech" diff --git a/.goreleaser.yml b/.goreleaser.yml index 3dac010fa51..ef7f63b23d6 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,4 +1,6 @@ -project_name: bsc-erigon +#version: 2 + +project_name: erigon release: disable: true diff --git a/Makefile b/Makefile index a8f338d34f6..ef03d0a757f 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ endif GOPRIVATE = github.com/erigontech/silkworm-go -PACKAGE = github.com/node-real/bsc-erigon +PACKAGE = github.com/erigontech/erigon GO_FLAGS += -trimpath -tags $(BUILD_TAGS) -buildvcs=false GO_FLAGS += -ldflags "-X ${PACKAGE}/params.GitCommit=${GIT_COMMIT} -X ${PACKAGE}/params.GitBranch=${GIT_BRANCH} -X ${PACKAGE}/params.GitTag=${GIT_TAG}" @@ -277,9 +277,10 @@ install: @echo "Copied files to $(DIST):" @ls -al "$(DIST)" -PACKAGE_NAME := github.com/node-real/bsc-erigon +PACKAGE_NAME := github.com/erigontech/erigon GOLANG_CROSS_VERSION ?= v1.21.5 + .PHONY: release-dry-run release-dry-run: git-submodules @docker run \