Version 0.1.1 #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
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 }} |