Bump pillow from 10.2.0 to 10.3.0 in /meterparser/src #193
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: deploy | |
env: | |
BUILD_ARGS: "--test" | |
MONITORED_FILES: "config.yaml" # to deploy, set a new version number in config. # "build.yaml config.yaml Dockerfile rootfs src src/**/*.py" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
init: | |
runs-on: ubuntu-latest | |
name: Initialize builds | |
outputs: | |
changed_addons: ${{ steps.changed_addons.outputs.addons }} | |
changed: ${{ steps.changed_addons.outputs.changed }} | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- name: Get changed files | |
id: changed_files | |
uses: jitterbit/get-changed-files@v1 | |
- name: Find add-on directories | |
id: addons | |
uses: home-assistant/actions/helpers/find-addons@master | |
- name: Get changed add-ons | |
id: changed_addons | |
run: | | |
declare -a changed_addons | |
for addon in ${{ steps.addons.outputs.addons }}; do | |
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon ]]; then | |
for file in ${{ env.MONITORED_FILES }}; do | |
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon/$file ]]; then | |
if [[ ! "${changed_addons[@]}" =~ $addon ]]; then | |
changed_addons+=("\"${addon}\","); | |
fi | |
fi | |
done | |
fi | |
done | |
changed=$(echo ${changed_addons[@]} | rev | cut -c 2- | rev) | |
if [[ -n ${changed} ]]; then | |
echo "Changed add-ons: $changed"; | |
echo "changed=true" >> $GITHUB_OUTPUT; | |
echo "addons=[$changed]" >> $GITHUB_OUTPUT; | |
else | |
echo "No add-on had any monitored files changed (${{ env.MONITORED_FILES }})"; | |
fi | |
build: | |
needs: init | |
runs-on: ubuntu-latest | |
if: needs.init.outputs.changed == 'true' | |
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on | |
strategy: | |
matrix: | |
addon: ${{ fromJson(needs.init.outputs.changed_addons) }} | |
arch: ["aarch64", "amd64", "armv7"] | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
- name: Get information | |
id: info | |
uses: home-assistant/actions/helpers/info@master | |
with: | |
path: "./${{ matrix.addon }}" | |
- name: Check if add-on should be built | |
id: check | |
run: | | |
if [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then | |
echo "build_arch=true" >> $GITHUB_OUTPUT; | |
echo "image=$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)" >> $GITHUB_OUTPUT; | |
if [[ -z "${{ github.head_ref }}" ]] && [[ "${{ github.event_name }}" == "push" ]]; then | |
echo "BUILD_ARGS=" >> $GITHUB_ENV; | |
fi | |
else | |
echo "${{ matrix.arch }} is not a valid arch for ${{ matrix.addon }}, skipping build"; | |
echo "build_arch=false" >> $GITHUB_OUTPUT; | |
fi | |
- name: Login to GitHub Container Registry | |
if: env.BUILD_ARGS != '--test' | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build ${{ matrix.addon }} add-on | |
if: steps.check.outputs.build_arch == 'true' | |
uses: home-assistant/builder@master | |
with: | |
args: | | |
${{ env.BUILD_ARGS }} \ | |
--${{ matrix.arch }} \ | |
--target /data/${{ matrix.addon }} \ | |
--image "${{ steps.check.outputs.image }}" \ | |
--docker-hub "ghcr.io/${{ github.repository_owner }}" \ | |
--addon | |
release: | |
needs: | |
- init | |
- build | |
runs-on: ubuntu-latest | |
if: needs.init.outputs.changed == 'true' && github.ref == 'refs/heads/main' | |
name: Create release for ${{ matrix.addon }} add-on | |
strategy: | |
matrix: | |
addon: ${{ fromJson(needs.init.outputs.changed_addons) }} | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
- name: Get information | |
id: info | |
uses: home-assistant/actions/helpers/info@master | |
with: | |
path: "./${{ matrix.addon }}" | |
- name: Get version | |
id: version | |
run: | | |
version="${{ steps.info.outputs.version }}"; | |
version="${version%\"}"; | |
version="${version#\"}"; | |
echo $version; | |
echo "result=$version" >> $GITHUB_OUTPUT; | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: "${{ matrix.addon }}-v${{ steps.version.outputs.result }}" | |
release_name: "${{ matrix.addon }} ${{ steps.version.outputs.result }}" | |
body: | | |
Changes in this Release | |
${{ github.event.head_commit.message }} | |
draft: false | |
prerelease: false |