We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b150cb commit 8e4873aCopy full SHA for 8e4873a
1 file changed
action.yml
@@ -128,13 +128,13 @@ runs:
128
129
def _main() -> None:
130
# --- Inputs ---
131
- name = os.getenv("INPUT_NAME") or "artifact"
132
- search_path = os.getenv("INPUT_PATH")
+ name = "${{ inputs.name }}" or "artifact"
+ auth_token = "${{ inputs.token }"
133
+ search_path = "${{ inputs.path }}"
134
+
135
if not search_path:
136
_error("The 'path' input is required")
137
- auth_token = os.getenv("INPUT_TOKEN", "")
-
138
# --- Environment ---
139
api_url = os.getenv("FORREST_API_URL")
140
if not api_url:
0 commit comments