Skip to content

Commit

Permalink
chore: update release workflow in order to generate types
Browse files Browse the repository at this point in the history
  • Loading branch information
devdanco committed Jan 3, 2024
1 parent f7256fe commit de38b96
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/branch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,19 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
env: pr-${{ github.event.number }}

generate-types:
name: Generate types
needs: [ init, build-and-test ]
uses: ./.github/workflows/reusable-generate-types.yml
secrets: inherit
with:
branch: ${{ needs.init.outputs.GIT_BRANCH }}
parachainDocker: ${{ github.event.inputs.parachainDocker }}
globalVersion: ${{ needs.init.outputs.GLOBAL_VERSION }}

run-e2e-test:
name: Run e2e tests
needs: [init, validate-branch-name, build-and-test]
needs: [init, validate-branch-name, build-and-test, generate-types]
uses: ./.github/workflows/reusable-e2e-tests.yml
secrets: inherit
permissions:
Expand Down

0 comments on commit de38b96

Please sign in to comment.