Skip to content

v2.4.8

v2.4.8 #32

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
release:
name: Prepare release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
# Build
- name: Build the file
run: |
ls /home/runner/work/
cd /home/runner/work/ha-toyota-na/ha-toyota-na/custom_components/toyota_na
zip -r ha_toyota_na.zip *
# Upload build file to the release as an asset
- name: Upload zip to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /home/runner/work/ha-toyota-na/ha-toyota-na/custom_components/toyota_na/ha_toyota_na.zip
asset_name: ha_toyota_na.zip
tag: ${{ github.ref }}
overwrite: true