Skip to content

Commit

Permalink
Restoring different networks using specific versions
Browse files Browse the repository at this point in the history
  • Loading branch information
maayarosama committed Dec 18, 2024
1 parent e84ba5e commit 846d8e8
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/grid_client_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,22 @@ jobs:
STORE_SECRET: secret
MNEMONIC: ${{ secrets.MNEMONIC }}
SSH_KEY: ${{ secrets.SSH_KEY }}

steps:
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'dev' }}
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'qa' }}
with:
ref: refs/tags/v2.6.3
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'test' }}
with:
ref: refs/tags/v2.6.3
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'main' }}
with:
ref: refs/tags/v2.5.2

- name: Set up node 18
uses: actions/setup-node@v3
Expand Down

0 comments on commit 846d8e8

Please sign in to comment.