-
-
Notifications
You must be signed in to change notification settings - Fork 63
65 lines (59 loc) · 1.68 KB
/
release.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
64
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-${{ 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