Skip to content

Commit

Permalink
CI: Add release workflow for tags
Browse files Browse the repository at this point in the history
Issue: RELENG-4563
Signed-off-by: Andrew Grimberg <[email protected]>
Change-Id: I32708d17966a7782e65bdf66c152e4e9ac89fda2
  • Loading branch information
tykeal committed Apr 12, 2023
1 parent 624e89f commit 984bce4
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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: evops-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: ${{ variables.MAIL_SERVER_PORT }}
secure: true
username: ${{ secrets.MAIL_USER }}
password: ${{ secrets.MAIL_PASSWORD }}
subject: lftools ${{ steps.tag.outputs.tag }} released
to: [email protected]
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

0 comments on commit 984bce4

Please sign in to comment.