mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
Support release/x.xx branches in CI (#8240)
It's safer to have branches for individual release series like `release/2.50` for 2.50.x releases instead of overwriting `stable`. geth does that already.
This commit is contained in:
parent
6985036070
commit
f6a6ab9b12
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -4,12 +4,12 @@ on:
|
||||
branches:
|
||||
- devel
|
||||
- alpha
|
||||
- stable
|
||||
- 'release/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- devel
|
||||
- alpha
|
||||
- stable
|
||||
- 'release/**'
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
|
2
.github/workflows/test-integration.yml
vendored
2
.github/workflows/test-integration.yml
vendored
@ -4,7 +4,7 @@ on:
|
||||
branches:
|
||||
- devel
|
||||
- alpha
|
||||
- stable
|
||||
- 'release/**'
|
||||
schedule:
|
||||
- cron: '20 16 * * *' # daily at 16:20 UTC
|
||||
workflow_dispatch:
|
||||
|
@ -74,10 +74,10 @@ Usage
|
||||
|
||||
### Getting Started
|
||||
|
||||
For building the latest stable release (this will be suitable for most users just wanting to run a node):
|
||||
For building the latest release (this will be suitable for most users just wanting to run a node):
|
||||
|
||||
```sh
|
||||
git clone --branch stable --single-branch https://github.com/ledgerwatch/erigon.git
|
||||
git clone --branch release/<x.xx> --single-branch https://github.com/ledgerwatch/erigon.git
|
||||
cd erigon
|
||||
make erigon
|
||||
./build/bin/erigon
|
||||
|
Loading…
Reference in New Issue
Block a user