-
Notifications
You must be signed in to change notification settings - Fork 2
159 lines (132 loc) · 4.66 KB
/
build-and-publish.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
name: build-and-publish
on:
push:
branches:
- master
tags:
- '*'
pull_request:
jobs:
build-on-ubuntu:
uses: livMatS/dtool-lookup-gui/.github/workflows/build-on-ubuntu.yml@2023-11-13-pyproject-toml
build-on-windows:
uses: livMatS/dtool-lookup-gui/.github/workflows/build-on-windows.yml@2023-11-13-pyproject-toml
build-installer-on-windows:
uses: livMatS/dtool-lookup-gui/.github/workflows/build-installer-on-windows.yml@2023-11-13-pyproject-toml
build-on-macos:
uses: livMatS/dtool-lookup-gui/.github/workflows/build-on-macos.yml@2023-11-13-pyproject-toml
publish-on-pypi:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install system dependencies
run: |
sudo apt-get update -qy
sudo apt-get install -y \
libgirepository1.0-dev \
libcairo2-dev \
pkg-config \
python3-dev \
gir1.2-gtk-3.0 \
libgtksourceview-4-0
- name: Install pythonic dependencies
run: |
pip install --upgrade pip
pip install wheel build
pip install -r requirements.txt
- name: Package distribution
run: |
python -m build --sdist --wheel
ls -1 dist/
- name: Get master HEAD SHA
id: get_master_sha
run: |
git fetch --depth 1 origin master
echo "Commit that triggered this workflow: ${{ github.sha }}"
echo "HEAD at master: $(git rev-parse origin/master)"
echo "sha=$(git rev-parse origin/master)" >> $GITHUB_OUTPUT
- name: Publish package
if: >-
github.event_name == 'push' &&
startsWith(github.ref, 'refs/tags') &&
steps.get_master_sha.outputs.sha == github.sha
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}
verbose: true
publish-on-github:
runs-on: ubuntu-20.04
needs:
- build-on-ubuntu
- build-on-macos
- build-on-windows
- build-installer-on-windows
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Get version
id: get_version
uses: battila7/get-version-action@v2
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Fix setuptools_scm-generated version
id: fix_version
run: |
pip install setuptools_scm
version=$(SETUPTOOLS_SCM_DEBUG=1 python -m setuptools_scm)
echo "version=$version" >> $GITHUB_OUTPUT
- name: Download Linux build
uses: actions/download-artifact@v3
with:
name: dtool-lookup-gui-linux-release
- name: Download Windows build
uses: actions/download-artifact@v3
with:
name: dtool-lookup-gui-windows-release
- name: Download Windows installer build
uses: actions/download-artifact@v3
with:
name: dtool-lookup-gui-windows-installer-release
- name: Download MacOS build
uses: actions/download-artifact@v3
with:
name: dtool-lookup-gui-macos-release
- name: List release builds
run: |
ls -lhv .
- name: Get master HEAD SHA
id: get_master_sha
run: |
git fetch --depth 1 origin master
echo "Commit that triggered this workflow: ${{ github.sha }}"
echo "HEAD at master: $(git rev-parse master)"
echo "sha=$(git rev-parse origin/master)" >> $GITHUB_OUTPUT
- name: Make release
if: >-
github.event_name == 'push' &&
startsWith(github.ref, 'refs/tags') &&
steps.get_master_sha.outputs.sha == github.sha
uses: softprops/action-gh-release@v1
with:
files: |
dtool-lookup-gui-${{ steps.fix_version.outputs.version }}-linux.tar.gz
dtool-lookup-gui-${{ steps.fix_version.outputs.version }}-macos.dmg
dtool-lookup-gui-${{ steps.fix_version.outputs.version }}-windows.zip
dtool-lookup-gui-${{ steps.fix_version.outputs.version }}-windows-installer.exe
draft: true