Skip to content

Commit

Permalink
Attach Artifacts to Workflow
Browse files Browse the repository at this point in the history
- allow for a backup just in case the upload to release asset fails
  • Loading branch information
donavanbecker committed Jan 7, 2024
1 parent fff0d5d commit 599e244
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 599e244

Please sign in to comment.