Skip to content

Commit 2642aca

Browse files
Pre-release
1 parent 9336678 commit 2642aca

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/manual.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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/

0 commit comments

Comments
 (0)