Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludy87 committed Dec 29, 2024
1 parent 27453e4 commit fc01f3c
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,28 @@ jobs:
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: |
${{ github.workspace }}/custom_components/ipv64/ipv64.zip
${{ github.workspace }}/custom_components/ipv64/ipv64.zip.asc
${{ github.workspace }}/custom_components/ipv64/ipv64.zip.intoto.jsonl
file: ${{ github.workspace }}/custom_components/ipv64/ipv64.zip
asset_name: ipv64.zip
tag: ${{ steps.version.outputs.version }}
overwrite: true

- name: Upload zip to release
if: steps.checkTag.outputs.exists == 'false'
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/custom_components/ipv64/ipv64.zip.asc
asset_name: ipv64.zip.asc
tag: ${{ steps.version.outputs.version }}
overwrite: true

- name: Upload zip to release
if: steps.checkTag.outputs.exists == 'false'
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/custom_components/ipv64/ipv64.zip.intoto.jsonl
asset_name: ipv64.zip.intoto.jsonl
tag: ${{ steps.version.outputs.version }}
overwrite: true

Expand Down

0 comments on commit fc01f3c

Please sign in to comment.