File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 24
24
WF_BUILD_DIR : ${{ github.workspace }}/cpython/build
25
25
WF_ZIPFILE : ${{ github.workspace }}/cpython/python-${{ github.event.inputs.py_commit }}-built.zip
26
26
steps :
27
+ - name : set env
28
+ run : |
29
+ echo "NOW=$(date +'%s')" >> $GITHUB_ENV
30
+ echo "RLNAME=${{ github.event.inputs.py_commit }}-${NOW}" >> $GITHUB_ENV
31
+
32
+ - name : test
33
+ run : echo "now ${NOW} -- rl ${RLNAME}"
34
+
27
35
- name : checkout python
28
36
uses : actions/checkout@v4
29
37
with :
53
61
run : |
54
62
ls ${WF_BUILD_DIR}
55
63
zip -r ${WF_ZIPFILE} ${WF_BUILD_DIR}
56
-
57
- - name : get date
58
- run : echo "NOW=$(date +'%s')" >> $GITHUB_ENV
59
64
60
65
- name : upload
61
- uses : softprops/action-gh-release@v2
62
- with :
63
- files : ${WF_ZIPFILE}
64
- tag_name : ${{ github.event.inputs.py_commit }}-${NOW}
65
- repository : TbhLovers/PythonBuilds
66
+ run : |
67
+ gh release create ${RLNAME} -R TbhLovers/PythonBuilds --notes hi
68
+ gh release upload ${RLNAME} ${WF_ZIPFILE} -R TbhLovers/PythonBuilds
You can’t perform that action at this time.
0 commit comments