Skip to content

Commit

Permalink
Fix path in release action
Browse files Browse the repository at this point in the history
  • Loading branch information
astrandb committed May 20, 2022
1 parent 9aaf814 commit 0875614
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
# Pack the teracom_hass dir as a zip and upload to the release
- name: ZIP teracom_hass Dir
run: |
cd ${{ github.workspace }}/custom_components/teracom_hass
cd ${{ github.workspace }}/custom_components/teracom
zip teracom_hass.zip -r ./
- name: Upload zip to release
uses: svenstaro/upload-release-action@v1-release

with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/custom_components/teracom_hass/teracom_hass.zip
file: ${{ github.workspace }}/custom_components/teracom/teracom_hass.zip
asset_name: teracom_hass.zip
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 0875614

Please sign in to comment.