0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-29 15:10:02 +00:00
netdata_netdata/.github/scripts/gen-docker-build-output.py
Austin S. Hemmelgarn cac652e384
Rework Docker CI to build each platform in it's own runner. ()
* Rework Docker CI to build each platform in it's own runner.

* Remove bogus conditional in publish step.
2024-03-05 08:49:58 -05:00

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')