Skip to content

Commit

Permalink
rollback 1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
eeliu committed Oct 17, 2023
1 parent bcaae4c commit 70b10de
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
30 changes: 28 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: build-wheels

on: [workflow_dispatch]
on:
workflow_dispatch:
inputs:
release_pipy:
description: Do you want to release to pipy
required: true
default: "false"

jobs:
build_wheels:
Expand Down Expand Up @@ -66,4 +72,24 @@ jobs:
user: __token__
password: ${{ secrets.EELIUTEST }}
packages_dir: ./wheelhouse/artifact
repository_url: https://test.pypi.org/legacy/
repository_url: https://test.pypi.org/legacy/

publish-pypi:
needs: build_wheels
runs-on: ubuntu-latest
if: ${{ github.event.inputs.release_pipy }} == "true"
steps:
- uses: actions/download-artifact@v3
with:
path: ./wheelhouse/

- name: show all artifact
run: |
ls -al ./wheelhouse/artifact/
- name: Publish package to pypitest
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PINPOINTPY }}
packages_dir: ./wheelhouse/artifact
2 changes: 1 addition & 1 deletion plugins/PY/pinpointPy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# !/usr/bin/env python
# -*- coding: UTF-8 -*-
# Created by eeliu at 2/4/21
__version__ = "1.0.16"
__version__ = "1.0.15"

from .libs import monkey_patch_for_pinpoint
from .pinpoint import set_agent, app_id, app_name, gen_tid
Expand Down
2 changes: 1 addition & 1 deletion setup_pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def run(self):


setup(name='pinpointPy',
version="1.0.16",# don't forget update __version__ in pinpointPy/__init__.py
version="1.0.15",# don't forget update __version__ in pinpointPy/__init__.py
author="cd_pinpoint members",
author_email='dl_cd_pinpoint@navercorp.com',
license='Apache License 2.0',
Expand Down

0 comments on commit 70b10de

Please sign in to comment.