mirror of
https://github.com/netdata/netdata.git
synced 2025-04-29 15:10:02 +00:00

* Rework Docker CI to build each platform in it's own runner. * Remove bogus conditional in publish step.
11 lines
219 B
Python
Executable file
11 lines
219 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
event = sys.argv[1]
|
|
|
|
match event:
|
|
case 'workflow_dispatch':
|
|
print('type=image,push=true,push-by-digest=true,name-canonical=true')
|
|
case _:
|
|
print('type=docker')
|