Skip to content

Commit

Permalink
Custom runner
Browse files Browse the repository at this point in the history
  • Loading branch information
alekswaslet committed Jun 8, 2024
1 parent 9180fd7 commit e7ceb32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/DEV-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
dev_build:
runs-on: [self-hosted, mcnTool]
runs-on: [self-hosted]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -21,10 +21,10 @@ jobs:
run: npm install && npm run build

dev_test:
runs-on: [self-hosted]
env:
MNEMONIC: ${{ secrets.MNEMONIC }}
needs: dev_build
runs-on: [self-hosted, mcnTool]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/PROD-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:

jobs:
prod_test:
runs-on: [self-hosted]
env:
MNEMONIC: ${{ secrets.MNEMONIC }}
runs-on: [self-hosted, mcnTool]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -26,7 +26,7 @@ jobs:

publish:
needs: prod_test
runs-on: [self-hosted, mcnTool]
runs-on: [self-hosted]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit e7ceb32

Please sign in to comment.