You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,13 @@ name: 'ESP Packaged Programmer'
2
2
description: 'Package esptool and the binaries into an executable'
3
3
inputs:
4
4
zipfile-id:
5
-
description: 'Artifact ID for the Zipfile to download. Zipfile should contain firmware.bin, bootloader.bin, partition-table.bin, and flasher_args.json. May optionally contain filesystem binaries and associated -flash_args files.'
6
-
required: true
5
+
description: 'Artifact ID for the Zipfile to download. Zipfile should contain firmware.bin, bootloader.bin, partition-table.bin, and flasher_args.json. May optionally contain filesystem binaries and associated -flash_args files. NOTE: only one of zipfile-id or zipfile-name should be set.'
6
+
required: false
7
+
default: ''
8
+
zipfile-name:
9
+
description: 'Name of the zipfile artifact that was packaged and uploaded. Zipfile should contain firmware.bin, bootloader.bin, partition-table.bin, and flasher_args.json. May optionally contain filesystem binaries and associated -flash_args files. NOTE: only one of zipfile-id or zipfile-name should be set.'
10
+
required: false
11
+
default: ''
7
12
programmer-name:
8
13
description: 'Base name of the programmer executable. Will have version tag (e.g. v1.0.0 or commit hash if no tags) and OS suffix (e.g. windows, linux, macos) appended.'
9
14
required: false
@@ -15,6 +20,20 @@ outputs:
15
20
runs:
16
21
using: "composite"
17
22
steps:
23
+
- name: Ensure that one of zipfile-id or zipfile-name is set
0 commit comments