Skip to content

Commit

Permalink
Update pre-release-types.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
devdanco authored Nov 8, 2023
1 parent c57722f commit b184426
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/pre-release-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,16 @@ jobs:

- uses: nrwl/nx-set-shas@v3

- name: Clone mangata node repository
- name: Clone mangata node repository with branch
if: ${{ github.event.inputs.branch != '' }}
uses: actions/checkout@v3
with:
repository: mangata-finance/mangata-node
path: mangata-repo
ref: ${{ github.event.inputs.branch }}

- name: Clone mangata node repository default develop
if: ${{ github.event.inputs.branch == '' }}
uses: actions/checkout@v3
with:
repository: mangata-finance/mangata-node
Expand Down Expand Up @@ -72,6 +81,10 @@ jobs:
working-directory: mangata-repo/devops/parachain-launch
run: npx @open-web3/parachain-launch generate config.yml

- name: Remove obsolete node run args from generated docker-compose.yml
working-directory: mangata-repo/devops/parachain-launch/output
run: sed -i '/ws-external/d' docker-compose.yml

- name: Run the Node
working-directory: mangata-repo/devops/parachain-launch/output
run: |
Expand Down Expand Up @@ -134,4 +147,3 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}



0 comments on commit b184426

Please sign in to comment.