Skip to content

v1.3.19 - Wall Art Editor #64

v1.3.19 - Wall Art Editor

v1.3.19 - Wall Art Editor #64

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install setuptools build wheel twine
- name: Package Windows helpers
run: |
zip -r windows_helpers.zip windows_helpers
- name: Upload Windows helpers
uses: ncipollo/release-action@v1
with:
artifacts: "windows_helpers.zip,windows_helpers/install.bat,windows_helpers/open_gui_beta.bat"
allowUpdates: true
omitBodyDuringUpdate: true
omitDraftDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python3 -m build
python3 -m twine upload --repository pypi dist/*