File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " pre-release"
2+
3+ on :
4+ push :
5+ branches :
6+ - " master"
7+
8+ jobs :
9+ pre-release :
10+ name : " Pre Release"
11+ runs-on : " ubuntu-latest"
12+
13+ steps :
14+ - name : " Build & test"
15+ run : |
16+ echo "done!"
17+
18+ - uses : " marvinpinto/action-automatic-releases@latest"
19+ with :
20+ repo_token : " ${{ secrets.GITHUB_TOKEN }}"
21+ automatic_release_tag : " latest"
22+ prerelease : true
23+ title : " Development Build"
24+
25+ - uses : actions/checkout@master
26+ - name : Set up Python 3.6
27+ uses : actions/setup-python@v1
28+ with :
29+ python-version : 3.6
30+ - name : Install pypa/build
31+ run : >-
32+ python -m
33+ pip install
34+ build
35+ --user
36+ - name : Build a binary wheel and a source tarball
37+ run : >-
38+ python -m
39+ build
40+ --sdist
41+ --wheel
42+ --outdir dist/
You can’t perform that action at this time.
0 commit comments