-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- allow for a backup just in case the upload to release asset fails
- Loading branch information
1 parent
fff0d5d
commit 599e244
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,21 @@ jobs: | |
echo "Bundle is under 10MB, stopping" | ||
exit 1 | ||
fi | ||
- name: Upload tar.gz Bundle to GitHub Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'homebridge-config-ui-x-${{ steps.tag.outputs.latestTag }}.tar.gz' | ||
path: | | ||
./homebridge-config-ui-x-${{ steps.tag.outputs.latestTag }}.tar.gz | ||
|
||
- name: Upload SHASUMS256.txt to GitHub Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'SHASUMS256.txt' | ||
path: | | ||
./SHASUMS256.txt | ||
- name: Attach Bundle | ||
uses: AButler/[email protected] | ||
|