Skip to content

Commit

Permalink
Trying to get a new version out
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbentcope committed Dec 23, 2024
1 parent 61c8169 commit 48702f5
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Release

on:
push:
tags:
- '*.*.*'

jobs:

# ----------------------------------------
gh-release-installer:
defaults:
run:
shell: bash
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry!=1.4.1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
# no caching!
- name: Install project
run: poetry install -E all
- name: Run PyInstaller
run: |
VERSION="`poetry version --short`"
echo "version=${VERSION}" >> $GITHUB_ENV
poetry run ${GITHUB_WORKSPACE}\\scripts\\build.bat
- name: Create NSIS installer
uses: joncloud/makensis-action@v4
with:
script-file: scripts\\installer_win.nsi
arguments: /V4 /DVERSION=${{ env.version }}
- name: Make GH Release
uses: ncipollo/release-action@v1
with:
draft: true
artifacts: dist/vpype-ttf-${{ env.version }}-setup.exe


# ----------------------------------------
pypi-upload:
runs-on: ubuntu-latest
needs: [gh-release-installer]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry!=1.4.1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Build artifacts
run: poetry build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
# repository_url: https://test.pypi.org/legacy/
# password: ${{ secrets.TEST_PYPI_TOKEN }}
password: ${{ secrets.PYPI_TOKEN }}
verbose: true The filename of the publishing workflow. This file should exist in the .github/workflows/ directory in the repository configured above.
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
[build-system]
requires = ["setuptools", "wheel", "numpy"]

[project]
name="vpype-ttf"
version="0.0.4"
dependencies = [
"click",
"vpype>=1.9,<2.0",
"numpy",
"freetype-py",
]
authors = [
{name = "John Cope", email = "[email protected]"}
]
description = "vpype ttf plugin"
readme = {file = "README.txt", content-type = "text/markdown"}

[tool.black]
line-length = 95

0 comments on commit 48702f5

Please sign in to comment.