-
Notifications
You must be signed in to change notification settings - Fork 48
80 lines (70 loc) · 2.04 KB
/
release.yaml
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
70
71
72
73
74
75
76
77
78
79
80
name: PyPI release
run-name: PyPI release ${{ inputs.tag || github.ref }}
on:
release:
types:
- published
workflow_dispatch:
inputs:
tag:
description: "Existing release tag (see create-release workflow)"
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.parse.outputs.version }}
name: ${{ steps.parse.outputs.name }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Parse tag
id: parse
env:
TAG: ${{ github.event.inputs.tag || github.ref }}
run: |
regex="^(refs/tags/)?(.*)_v(.*)$"
[[ $TAG =~ $regex ]] || exit 1
name=${BASH_REMATCH[2]}
version=${BASH_REMATCH[3]}
echo "Parsed name=$name version=$version"
echo "name=$name" >> "$GITHUB_OUTPUT"
echo "version=$version" >> "$GITHUB_OUTPUT"
- name: Install deps
run: python -m pip install --upgrade pip setuptools_scm build
- name: Build
working-directory: projects/${{ steps.parse.outputs.name }}
run: python -m build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: projects/${{ steps.parse.outputs.name }}/dist
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
needs: build
environment:
name: pypi
url: https://pypi.org/p/${{ needs.build.outputs.name }}
permissions:
id-token: write
steps:
- name: Download dist
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
release-container:
if: ${{ needs.build.outputs.name == 'fal' }}
uses: ./.github/workflows/container.yml
needs: build
with:
version: ${{ needs.build.outputs.version }}