-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (60 loc) · 2.04 KB
/
python-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Publish
on:
push:
workflow_dispatch:
jobs:
build-and-release:
if: "contains(github.event.head_commit.message, 'Version')"
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel build twine
python -m pip install Pyinstaller
python setup.py install
- name: Build package
run: python -m build --no-isolation
- name: Publish package
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload ./dist/*.whl --skip-existing
twine upload ./dist/*.tar.gz --skip-existing
- name: Build Windows executables
run: |
pyinstaller UnityPyLive2DExtractor.spec
- name : Get Version
id : get_version
run : |
$message = @(git log -1 --oneline --format=%s)
$lines = $message.Split(' ')
$version = $lines[1]
Write-Output "::set-output name=version::$version"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_version.outputs.version }}
release_name: Version ${{ steps.get_version.outputs.version }}
- uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/UnityPyLive2DExtractor.exe
asset_name: UnityPyLive2DExtractor.exe
asset_content_type: application/application/vnd.microsoft.portable-executable
- uses: eregon/publish-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ steps.create_release.outputs.id }}