-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (28 loc) · 847 Bytes
/
action.yml
File metadata and controls
28 lines (28 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "Repository Bytecode Reconciler"
description: ""
author: "Kevin Park"
inputs:
build_previous_commits:
description: "Previous commits to build."
required: false
dir_path_to_broadcasts:
description: "Relative path from the repository root to the broadcasts directory."
required: false
dir_path_to_artifacts:
description: "Relative path from the repository root to the artifacts directory."
required: false
additional_contracts:
description: "Additional contracts."
required: false
forge_path:
description: "Path to Forge."
required: false
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.build_previous_commits }}
- ${{ inputs.dir_path_to_broadcasts }}
- ${{ inputs.dir_path_to_artifacts }}
- ${{ inputs.additional_contracts }}
- ${{ inputs.forge_path }}