Skip to content

Commit

Permalink
Update release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefino9488 committed Jun 6, 2024
1 parent 2002af7 commit 0d89bdb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ jobs:
run: |
zip -r fastbootflasher-${{ steps.version.outputs.version }}.zip fastbootflasher-v2
- name: Create Release Notes
run: |
touch release_notes.txt
echo "## Release Notes" > release_notes.txt
echo "- Built Fastboot Flasher from commit ${{ github.sha }}" >> release_notes.txt
echo "- Version: ${{ steps.version.outputs.version }}" >> release_notes.txt
echo "- Add any other relevant changes or notes here" >> release_notes.txt
- name: Create release
id: create_release
uses: ncipollo/release-action@v1
Expand All @@ -67,5 +75,5 @@ jobs:
name: "Fastboot Flasher ${{ steps.version.outputs.version }}"
allowUpdates: true
makeLatest: true
bodyFile: CHANGELOG.md
bodyFile: release_notes.txt
token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# Changelog

---
## v2

- Improved device detection with a waiting mechanism.
- Added compatibility checks for device models `xaga`, `xagapro`, and `xagain`.
- Enhanced boot image selection (Magisk and default).
- Enhanced boot image selection (Magisk and Stock).
- Included critical and additional image verification before flashing.
- Streamlined the flashing process with user prompts for formatting data.
- Added functionality for additional options, including flashing boot images, vendor boot images, and formatting data.
Expand Down

0 comments on commit 0d89bdb

Please sign in to comment.