Publish Release #59
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: Publish Release | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
schedule: | |
- cron: "0 2 * * *" | |
permissions: | |
contents: read | |
jobs: | |
init: | |
name: Initialize build | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.tag.outputs.tag }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Get tag | |
id: tag | |
# yamllint disable rule:line-length | |
run: | | |
if [[ "$GITHUB_EVENT_NAME" = "release" ]]; then | |
TAG="${GITHUB_REF#refs/tags/}" | |
else | |
TAG=$(cat esphome/const.py | sed -n -E "s/^__version__\s+=\s+\"(.+)\"$/\1/p") | |
today="$(date --utc '+%Y%m%d')" | |
TAG="${TAG}${today}" | |
BRANCH=${GITHUB_REF#refs/heads/} | |
if [[ "$BRANCH" != "dev" ]]; then | |
TAG="${TAG}-${BRANCH}" | |
fi | |
fi | |
echo "tag=${TAG}" >> $GITHUB_OUTPUT | |
# yamllint enable rule:line-length | |
deploy-pypi: | |
name: Build and publish to PyPi | |
if: github.repository == 'esphome/esphome' && github.event_name == 'release' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: "3.x" | |
- name: Set up python environment | |
env: | |
ESPHOME_NO_VENV: 1 | |
run: | | |
script/setup | |
pip install twine | |
- name: Build | |
run: python setup.py sdist bdist_wheel | |
- name: Upload | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
run: twine upload dist/* | |
deploy-docker: | |
name: Build ESPHome ${{ matrix.platform }} | |
if: github.repository == 'esphome/esphome' | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ubuntu-latest | |
needs: [init] | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- linux/amd64 | |
- linux/arm/v7 | |
- linux/arm64 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: "3.9" | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Set up QEMU | |
if: matrix.platform != 'linux/amd64' | |
uses: docker/[email protected] | |
- name: Log in to docker hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Log in to the GitHub container registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build docker | |
uses: ./.github/actions/build-image | |
with: | |
platform: ${{ matrix.platform }} | |
target: docker | |
baseimg: docker | |
suffix: "" | |
version: ${{ needs.init.outputs.tag }} | |
- name: Build ha-addon | |
uses: ./.github/actions/build-image | |
with: | |
platform: ${{ matrix.platform }} | |
target: hassio | |
baseimg: hassio | |
suffix: "hassio" | |
version: ${{ needs.init.outputs.tag }} | |
- name: Build lint | |
uses: ./.github/actions/build-image | |
with: | |
platform: ${{ matrix.platform }} | |
target: lint | |
baseimg: docker | |
suffix: lint | |
version: ${{ needs.init.outputs.tag }} | |
deploy-manifest: | |
name: Publish ESPHome ${{ matrix.image.title }} to ${{ matrix.registry }} | |
runs-on: ubuntu-latest | |
needs: | |
- init | |
- deploy-docker | |
if: github.repository == 'esphome/esphome' | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- title: "ha-addon" | |
target: "hassio" | |
suffix: "hassio" | |
- title: "docker" | |
target: "docker" | |
suffix: "" | |
- title: "lint" | |
target: "lint" | |
suffix: "lint" | |
registry: | |
- ghcr | |
- dockerhub | |
steps: | |
- uses: actions/[email protected] | |
- name: Download digests | |
uses: actions/[email protected] | |
with: | |
name: digests-${{ matrix.image.target }}-${{ matrix.registry }} | |
path: /tmp/digests | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Log in to docker hub | |
if: matrix.registry == 'dockerhub' | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Log in to the GitHub container registry | |
if: matrix.registry == 'ghcr' | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate short tags | |
id: tags | |
run: | | |
output=$(docker/generate_tags.py \ | |
--tag "${{ needs.init.outputs.tag }}" \ | |
--suffix "${{ matrix.image.suffix }}" \ | |
--registry "${{ matrix.registry }}") | |
echo $output | |
for l in $output; do | |
echo $l >> $GITHUB_OUTPUT | |
done | |
- name: Create manifest list and push | |
working-directory: /tmp/digests | |
run: | | |
docker buildx imagetools create $(jq -Rcnr 'inputs | . / "," | map("-t " + .) | join(" ")' <<< "${{ steps.tags.outputs.tags}}") \ | |
$(printf '${{ steps.tags.outputs.image }}@sha256:%s ' *) | |
deploy-ha-addon-repo: | |
if: github.repository == 'esphome/esphome' && github.event_name == 'release' | |
runs-on: ubuntu-latest | |
needs: [deploy-manifest] | |
steps: | |
- name: Trigger Workflow | |
uses: actions/[email protected] | |
with: | |
github-token: ${{ secrets.DEPLOY_HA_ADDON_REPO_TOKEN }} | |
script: | | |
github.rest.actions.createWorkflowDispatch({ | |
owner: "esphome", | |
repo: "home-assistant-addon", | |
workflow_id: "bump-version.yml", | |
ref: "main", | |
inputs: { | |
version: "${{ github.event.release.tag_name }}", | |
content: ${{ toJSON(github.event.release.body) }} | |
} | |
}) |