Skip to content

Commit 75e7183

Browse files
committed
feat: add app_address input to publish-orders workflow for order publishing
1 parent aa2854a commit 75e7183

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/publish-orders.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
- bellecour-prod
1616
- arbitrum-sepolia-prod
1717
- arbitrum-prod
18+
app_address:
19+
description: 'App address to publish orders for'
20+
required: true
21+
type: string
1822

1923
jobs:
2024
publish-order:
@@ -34,6 +38,10 @@ jobs:
3438
working-directory: deployment-dapp
3539
run: npm ci
3640

41+
- name: Create app address file
42+
working-directory: deployment-dapp
43+
run: echo "${{ github.event.inputs.app_address }}" > .app-address
44+
3745
- name: Execute order action
3846
working-directory: deployment-dapp
3947
env:

0 commit comments

Comments
 (0)