Skip to content

Commit c097e6c

Browse files
author
shinjith-dev
committed
ci: the final dance
Signed-off-by: shinjith-dev <[email protected]>
1 parent fe598ad commit c097e6c

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/tauri-publish.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,24 @@ jobs:
6666
- name: build internal packages
6767
run: pnpm --filter "./packages/**" build
6868

69-
- name: change directory
70-
run: cd apps/native
69+
7170

72-
- name: Read release notes
73-
uses: guibranco/github-file-reader-action-v2@latest
71+
- name: Read release note
72+
id: releasenote
73+
uses: juliangruber/read-file-action@v1
7474
with:
75-
path: "../../.github/RELEASENOTES.md"
75+
path: ".github/RELEASENOTES.md"
76+
77+
- name: change directory
78+
run: cd apps/native
7679

7780
- uses: tauri-apps/tauri-action@v0
7881
env:
7982
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8083
with:
8184
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
8285
releaseName: 'Pomtick v__VERSION__'
83-
releaseBody: ${{ steps.read_file.outputs.contents }}
86+
releaseBody: ${{ steps.releasenote.outputs.contents }}
8487
releaseDraft: false
8588
prerelease: false # Commented to use semantic-release
8689
args: ${{ matrix.args }}

0 commit comments

Comments
 (0)