13 lines
223 B
Python
Executable file
13 lines
223 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
# Used by github-release.sh
|
|
|
|
import sys
|
|
import json
|
|
|
|
v = sys.argv[1]
|
|
print(json.JSONEncoder().encode({
|
|
'tag_name': 'openscad-'+v,
|
|
'name': 'OpenSCAD '+v,
|
|
'body': open('./releases/'+v+'.md').read()
|
|
}))
|