Skip to content

Commit 4e0a937

Browse files
committed
Add all environments to pipelines
1 parent 18c4b70 commit 4e0a937

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/mainline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ jobs:
1818
strategy:
1919
max-parallel: 1
2020
matrix:
21+
env: [dev, stg]
2122
flavor: [testnet, mainnet]
2223
with:
23-
DEPLOY_ENV: dev
24+
DEPLOY_ENV: ${{ matrix.env }}
2425
DEPLOY_APP: "${{ github.event.repository.name }}-${{ matrix.flavor }}"
2526
DEPLOY_VERSION: master
2627
DEPLOY_HOST_PREFIX: ""

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
matrix:
2121
flavor: [testnet, mainnet]
2222
with:
23-
DEPLOY_ENV: dev
23+
DEPLOY_ENV: prd
2424
DEPLOY_APP: "${{ github.event.repository.name }}-${{ matrix.flavor }}"
2525
DEPLOY_TAG: ${{ github.ref_name }}

0 commit comments

Comments
 (0)