Skip to content

Commit 4c4d47f

Browse files
committed
release v0.3.0rc1
1 parent ed75e98 commit 4c4d47f

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: Upload Python Package
22
on:
33
push:
4-
branches:
5-
- 'master-ini'
6-
4+
tags:
5+
- 'v[0-9]+.[0-9]+.[0-9]+' # Match tags in the format v0.3.0
6+
- 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+' # Match tags in the format v0.3.0rc1
7+
78
jobs:
89
deploy:
910

@@ -31,4 +32,15 @@ jobs:
3132
with:
3233
user: __token__
3334
password: ${{ secrets.PYPI_TOKEN }}
34-
35+
- name: Create Release
36+
id: create_release
37+
uses: actions/create-release@v1
38+
env:
39+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
with:
41+
tag_name: ${{ github.ref }}
42+
release_name: Release ${{ github.ref }}
43+
body: |
44+
Release ${{ github.ref }}
45+
draft: false
46+
prerelease: false

middleware/installer/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run(args):
3636
# except subprocess.CalledProcessError as e:
3737
# print(f"Failed bootstrapping with error: {e}")
3838

39-
39+
print("cmd2=>", cmd2)
4040
_bootstrap()
4141

4242
try:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setuptools.setup(
2121
name="middleware-apm",
22-
version="0.3.0",
22+
version="0.3.0rc1",
2323
install_requires=requirements,
2424
author="middleware-dev",
2525
maintainer="middleware-dev",

0 commit comments

Comments
 (0)