File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 4646 GIT_BRANCH : ${{ steps.set_vars.outputs.GIT_BRANCH }}
4747 RELEASE_BRANCH_PATTERN : ${{ steps.set_vars.outputs.RELEASE_BRANCH_PATTERN }}
4848 RELEASE_TAG : ${{ steps.set_vars.outputs.RELEASE_TAG }}
49+ GIT_BRANCH_UNFORMATTED : ${{ steps.branch-name.outputs.current_branch }}
4950 steps :
5051 - name : Get branch name
5152 id : branch-name
@@ -114,9 +115,19 @@ jobs:
114115 token : ${{ secrets.GITHUB_TOKEN }}
115116 env : pr-${{ github.event.number }}
116117
118+ generate-types :
119+ name : Generate types
120+ needs : [ init, build-and-test ]
121+ uses : ./.github/workflows/reusable-generate-types.yml
122+ secrets : inherit
123+ with :
124+ branch : ${{ needs.init.outputs.GIT_BRANCH_UNFORMATTED }}
125+ parachainDocker : ${{ github.event.inputs.parachainDocker }}
126+ globalVersion : ${{ needs.init.outputs.GLOBAL_VERSION }}
127+
117128 run-e2e-test :
118129 name : Run e2e tests
119- needs : [init, validate-branch-name, build-and-test]
130+ needs : [init, validate-branch-name, build-and-test, generate-types ]
120131 uses : ./.github/workflows/reusable-e2e-tests.yml
121132 secrets : inherit
122133 permissions :
You can’t perform that action at this time.
0 commit comments