Skip to content

Commit 91b8bc2

Browse files
committed
Preparing for release
1 parent b7b8e96 commit 91b8bc2

File tree

4 files changed

+50
-1
lines changed

4 files changed

+50
-1
lines changed

.github/workflows/build-fap.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: "Flipper Zero: build & release"
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
build-and-release:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Build with uFBT (release SDK)
20+
id: ufbt
21+
uses: flipperdevices/[email protected]
22+
with:
23+
app-dir: .
24+
sdk-channel: release
25+
26+
- name: Create GitHub Release + upload artifacts
27+
uses: softprops/action-gh-release@v2
28+
with:
29+
tag_name: ${{ github.ref_name }}
30+
name: "Release ${{ github.ref_name }}"
31+
draft: false
32+
prerelease: false
33+
generate_release_notes: false
34+
body: |
35+
## Release ${{ github.ref_name }}
36+
37+
**Release Notes:**
38+
- Summary:
39+
- Changes:
40+
- Known issues:
41+
- Installation notes:
42+
43+
**Build info**
44+
- SDK channel: release
45+
- Commit: ${{ github.sha }}
46+
47+
files: ${{ steps.ufbt.outputs.fap-artifacts }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
An Amiibo toolkit app for Flipper Zero.
44

5-
This project is in early development. Features may be incomplete or unstable.
5+
This project is usable but still in development. Ensure you back up all important data and avoid using it with another experimental setup, like Amiibo Link writing, to prevent damage or data loss.
66

77
## Features
88

ami_tool.png

33 Bytes
Loading

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
v0.1-rc1:
2+
initial release with amiibo reading, writing, emulation and generation features.

0 commit comments

Comments
 (0)