File tree Expand file tree Collapse file tree 5 files changed +7
-17
lines changed Expand file tree Collapse file tree 5 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 89
89
# #
90
90
# # Runs when the following is true:
91
91
# # - tag is provided
92
- # # - workflow is building default branch (master)
93
92
create-release :
94
93
if : |
95
- inputs.tag != '' &&
96
- github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
94
+ inputs.tag != ''
97
95
name : Create Release
98
96
needs :
99
97
- rustfmt
Original file line number Diff line number Diff line change @@ -21,11 +21,9 @@ concurrency:
21
21
jobs :
22
22
# # Runs when the following is true:
23
23
# # - tag is provided
24
- # # - workflow is building default branch (master)
25
24
artifact :
26
25
if : |
27
- inputs.tag != '' &&
28
- github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
26
+ inputs.tag != ''
29
27
name : Build Binaries
30
28
runs-on : ubuntu-latest
31
29
strategy :
60
58
arch : ${{ matrix.arch }}
61
59
cpu : ${{ matrix.cpu }}
62
60
tag : ${{ inputs.tag }}
63
-
Original file line number Diff line number Diff line change 25
25
# #
26
26
# # Runs when the following is true:
27
27
# # - tag is provided
28
- # # - workflow is building default branch (master)
29
28
build-binaries :
30
29
if : |
31
- inputs.tag != '' &&
32
- github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
30
+ inputs.tag != ''
33
31
name : Build Binaries
34
32
uses : ./.github/workflows/create-source-binary.yml
35
33
with :
41
39
# # - workflow is building default branch (master)
42
40
create-release :
43
41
if : |
44
- inputs.tag != '' &&
45
- github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
42
+ inputs.tag != ''
46
43
name : Create Release
47
44
runs-on : ubuntu-latest
48
45
needs :
84
81
# # - workflow is building default branch (master)
85
82
docker-image :
86
83
if : |
87
- inputs.tag != '' &&
88
- github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
84
+ inputs.tag != ''
89
85
name : Docker Image (Binary)
90
86
uses : ./.github/workflows/image-build-binary.yml
91
87
needs :
Original file line number Diff line number Diff line change 28
28
# # - workflow is building default branch (master)
29
29
image :
30
30
if : |
31
- inputs.tag != '' &&
32
- github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
31
+ inputs.tag != ''
33
32
name : Build Image
34
33
runs-on : ubuntu-latest
35
34
strategy :
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ pub const BITCOIN_TESTNET_STACKS_21_BURN_HEIGHT: u64 = 2_422_101;
134
134
pub const BITCOIN_TESTNET_STACKS_22_BURN_HEIGHT : u64 = 2_431_300 ;
135
135
pub const BITCOIN_TESTNET_STACKS_23_BURN_HEIGHT : u64 = 2_431_633 ;
136
136
pub const BITCOIN_TESTNET_STACKS_24_BURN_HEIGHT : u64 = 2_432_545 ;
137
- pub const BITCOIN_TESTNET_STACKS_25_BURN_HEIGHT : u64 = 20_000_000 ;
137
+ pub const BITCOIN_TESTNET_STACKS_25_BURN_HEIGHT : u64 = 2_583_893 ;
138
138
pub const BITCOIN_TESTNET_STACKS_30_BURN_HEIGHT : u64 = 30_000_000 ;
139
139
140
140
pub const BITCOIN_REGTEST_FIRST_BLOCK_HEIGHT : u64 = 0 ;
You can’t perform that action at this time.
0 commit comments