Skip to content

Commit

Permalink
fix release ci (#544)
Browse files Browse the repository at this point in the history
  • Loading branch information
blxdyx authored Oct 29, 2024
1 parent 80f2881 commit f95ecf7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/qa-rpc-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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: "[email protected]"
Expand Down
4 changes: 3 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
project_name: bsc-erigon
#version: 2

project_name: erigon

release:
disable: true
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit f95ecf7

Please sign in to comment.