-
Notifications
You must be signed in to change notification settings - Fork 8
55 lines (50 loc) · 1.8 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
---
name: PyPI release
# yamllint disable-line rule:truthy
on: push
jobs:
publish:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Configure Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Build package distribution files
run: >-
pipx run tox -e clean,build
- name: Configure TWINE
run: |
echo "TWINE_USERNAME=__token__" >> $GITHUB_ENV
echo "TWINE_PASSWORD=${{ secrets.PYPI_API_TOKEN }}" >> $GITHUB_ENV
- name: Publish to PyPI
run: >-
pipx run tox -e publish -- --repository pypi
- name: Get tag
id: tag
uses: devops-actions/[email protected]
- name: Convert tag
run: >-
VER=$(echo "${{ steps.tag.outputs.tag }}" | tr . -)
echo "ANCHOR=${VER}" >> $GITHUB_ENV
- name: Notify mailing list
uses: dawidd6/action-send-mail@v3
with:
server_address: ${{ vars.MAIL_SERVER }}
server_port: ${{ vars.MAIL_SERVER_PORT }}
secure: true
username: ${{ secrets.MAIL_USER }}
password: ${{ secrets.MAIL_PASSWORD }}
subject: lftools ${{ steps.tag.outputs.tag }} released
from: ${{ vars.MAIL_FROM }}
body: |
Hi Everyone,
lftools ${{ steps.tag.outputs.tag }} is released. Thanks to everyone who contributed
to this release. Release notes are avaiable online at:
https://docs.releng.linuxfoundation.org/projects/lftools/en/stable/release-notes.html#${{ env.ANCHOR }}
Cheers,
LF Release Engineering