Bump version to 2.5.2 #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Release" | |
on: | |
push: | |
tags: | |
- "[v0-9]+.[0-9]+*" | |
jobs: | |
release: | |
name: "Publish new release" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out repository" | |
uses: actions/checkout@v4 | |
- working-directory: ./custom_components | |
run: | | |
echo "package=$(ls -F | grep \/$ | sed -n "s/\///g;1p")" >> $GITHUB_ENV | |
echo "release_version=$(git describe --tags | sed s/v//)" >> $GITHUB_ENV | |
- working-directory: ./custom_components | |
run: | | |
echo "basedir=$(pwd)/${{ env.package }}" >> $GITHUB_ENV | |
- name: "Setup Git" | |
if: env.release_version != '' && success() | |
run: | | |
git config --global user.name "release" | |
git config --global user.email "release@GitHub" | |
- name: "Zip component dir" | |
if: env.release_version != '' && success() | |
working-directory: ./custom_components/${{ env.package }} | |
run: | | |
zip ${{ env.package }}.zip -r ./ | |
- name: "Release" | |
if: env.release_version != '' && success() | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ${{ env.basedir }}/${{ env.package }}.zip | |
release-notes: | |
name: "Compose release notes" | |
needs: release | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out repository" | |
uses: actions/checkout@v4 | |
- working-directory: ./custom_components | |
run: | | |
echo "release_version=$(git describe --tags | sed s/v//)" >> $GITHUB_ENV | |
- name: "Set up Python" | |
if: env.release_version != '' && success() | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: "Cache pip" | |
if: env.release_version != '' && success() | |
uses: actions/cache@v3 | |
with: | |
# This path is specific to Ubuntu | |
path: ~/.cache/pip | |
# Look to see if there is a cache hit for the corresponding requirements file | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
${{ runner.os }}- | |
- name: "Install requirements" | |
if: env.release_version != '' && success() | |
run: | | |
python3 -m pip install setuptools wheel | |
python3 -m pip install -r ./requirements-dev.txt | |
- name: "Update release notes" | |
if: env.release_version != '' && success() | |
run: python3 ./scripts/gen_releasenotes --token ${{ secrets.GITHUB_TOKEN }} --repo ${{ github.repository }} --release ${{ env.release_version }} |