One-click backups for AT Protocol

feat: add release notes

Turtlepaw f4d715a4 3dd2ab00

Changed files
+11 -1
.github
workflows
+8 -1
.github/workflows/publish.yaml
··· 66 66 # If you don't have `beforeBuildCommand` configured you may want to build your frontend here too. 67 67 run: bun install # change this to npm or pnpm depending on which one you use. 68 68 69 + - name: Load release notes 70 + id: release_notes 71 + run: | 72 + echo "RELEASE_BODY<<EOF" >> $GITHUB_ENV 73 + cat RELEASE_NOTES.md >> $GITHUB_ENV 74 + echo "EOF" >> $GITHUB_ENV 75 + 69 76 - uses: tauri-apps/tauri-action@v0 70 77 env: 71 78 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ··· 74 81 with: 75 82 tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. 76 83 releaseName: "App v__VERSION__" 77 - releaseBody: "See the assets to download this version and install." 84 + releaseBody: ${{ env.RELEASE_BODY }} 78 85 releaseDraft: true 79 86 prerelease: false 80 87 args: ${{ matrix.args }}
+3
RELEASE_NOTES.md
··· 1 + - Fix background backups 2 + - Hide the app in macOS dock ([#3](https://github.com/Turtlepaw/atproto-backup/issues/3)) 3 + - Refresh backups when focused