-
Notifications
You must be signed in to change notification settings - Fork 8
69 lines (59 loc) · 1.91 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
66
67
68
69
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: release
jobs:
build:
name: Create Release
runs-on: windows-latest
steps:
- name: Get version from tag
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
shell: bash
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: COMPAS CEM ${{ github.ref }}
draft: false
prerelease: false
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: compas-dev/compas-actions.build@v3.0.1
with:
test_lint: true
test_compas: true
- uses: NuGet/setup-nuget@v1.0.5
- name: Install dependencies
run: |
choco install ironpython --version=2.7.8.1
- name: 🦗 Build grasshopper components
uses: compas-dev/compas-actions.ghpython_components@v1
with:
source: src/compas_cem/ghpython/components
target: src/compas_cem/ghpython/components/ghuser
- name: 💃 Build release
if: success() && startsWith(github.ref, 'refs/tags')
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python setup.py clean --all sdist bdist_wheel
- name: 📦 Publish release to PyPI
if: success() && startsWith(github.ref, 'refs/tags')
run: |
twine check dist/*
twine upload dist/* --skip-existing
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI }}