gen-docker-build-output.py 219 B

1234567891011
  1. #!/usr/bin/env python3
  2. import sys
  3. event = sys.argv[1]
  4. match event:
  5. case 'workflow_dispatch':
  6. print('type=image,push=true,push-by-digest=true,name-canonical=true')
  7. case _:
  8. print('type=docker')