Skip to content

Commit

Permalink
change action
Browse files Browse the repository at this point in the history
  • Loading branch information
SAKURA-CAT committed Aug 18, 2024
1 parent 7579056 commit f465fe7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 12 deletions.
29 changes: 18 additions & 11 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
with:
python-version: "3.10"

- name: Checkout Version
run: |
export VERSION=$(echo $GITHUB_REF | sed -n 's/refs\/tags\/v//p')
- name: Install Dependencies
run: |
pip install -r requirements.txt
Expand All @@ -30,14 +34,17 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}

run: |
python -m build
python -m twine upload dist/*
# - run: cp dist/*.whl .
# - name: Release
# uses: softprops/action-gh-release@v1
# if: startsWith(github.ref, 'refs/tags/')
# with:
# body: ${{ github.event.head_commit.message }}
# files: |
# *.whl
python -m build_pypi.py
# python -m twine upload dist/*

- run: cp dist/*.whl .

- run: cat swanlab/package.json

- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body: ${{ github.event.head_commit.message }}
files: |
*.whl
11 changes: 11 additions & 0 deletions build_pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,21 @@
"""
import subprocess
import shutil
import json
import os

# 如果dist文件夹存在则删除
if os.path.exists("dist"):
shutil.rmtree("dist")

# 设置版本号
version = os.getenv("VERSION")
if not version:
raise ValueError("尚未指定构建版本号")
with open("swanlab/package.json", 'r+') as f:
p = json.load(f)
p["version"] = version
json.dump(p, f, indent=4)

# 构建python项目
subprocess.run("python -m build", shell=True)
2 changes: 1 addition & 1 deletion swanlab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swanlab",
"version": "0.3.16",
"version": "development",
"description": "",
"python": "true"
}

0 comments on commit f465fe7

Please sign in to comment.