File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,17 @@ concurrency:
5
5
group : ${{github.workflow}}-${{github.ref}}
6
6
cancel-in-progress : true
7
7
on :
8
+ push :
9
+ branches :
10
+ - chore/update-e2e-tests-part3
8
11
workflow_dispatch :
9
12
inputs :
10
13
release-version :
11
14
description : " Test Release version (v#.#.#[-rc#])"
12
15
required : true
13
16
14
17
env :
15
- TAG_FROM_UI : ${{github.event.inputs.release-version}}
18
+ TAG_FROM_UI : v1.12.0
16
19
17
20
jobs :
18
21
run-e2e :
35
38
uses : actions/checkout@v4
36
39
with :
37
40
fetch-depth : 0
38
- ref : ${{env.TAG_FROM_UI}}
41
+ # ref: ${{env.TAG_FROM_UI}}
39
42
- name : Set Env Vars
40
43
run : |
41
44
echo "API_AUGMENT_VERSION=$(echo ${{ env.TAG_FROM_UI }} | sed 's/^v//')" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { u8aToHex } from '@polkadot/util/u8a/toHex';
9
9
10
10
const fundingSource : KeyringPair = getFundingSource ( 'frequency-misc' ) ;
11
11
12
- describe ( 'Frequency' , function ( ) {
12
+ describe . skip ( 'Frequency' , function ( ) {
13
13
describe ( 'setup' , function ( ) {
14
14
let keypairA : KeyringPair ;
15
15
let keypairB : KeyringPair ;
You can’t perform that action at this time.
0 commit comments