Skip to content

Commit

Permalink
release v0.4.8 (latest)
Browse files Browse the repository at this point in the history
Signed-off-by: CFC4N <cfc4n.cs@gmail.com>
  • Loading branch information
cfc4n committed Nov 5, 2022
1 parent adef120 commit 078f180
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Write File
uses: DamianReeves/write-file-action@v1.0
with:
path: ./release_notes.txt
path: ./bin/release_notes.txt
contents: |
${{ steps.github_release.outputs.changelog }}
write-mode: append
Expand Down
6 changes: 3 additions & 3 deletions builder/Makefile.release
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ snapshot: \
$(CMD_CP) README.md $(TAR_DIR)/README.md
$(CMD_CP) README_CN.md $(TAR_DIR)/README_CN.md
$(CMD_MV) $(OUTPUT_DIR)/ecapture $(TAR_DIR)/ecapture
$(CMD_CP) release_notes.txt $(OUTPUT_DIR)/release_notes.txt
$(CMD_CP) $(RELEASE_NOTES) $(OUTPUT_DIR)/release_notes.txt
$(CMD_TAR) -czf $(OUT_ARCHIVE) $(TAR_DIR)
cd $(OUTPUT_DIR)
$(CMD_CHECKSUM) $(TAR_DIR).tar.gz > ./../$(OUT_CHECKSUMS)
Expand All @@ -178,7 +178,7 @@ snapshot_android: \
$(CMD_CP) README.md $(TAR_DIR_ANDROID)/README.md
$(CMD_CP) README_CN.md $(TAR_DIR_ANDROID)/README_CN.md
$(CMD_MV) $(OUTPUT_DIR)/ecapture $(TAR_DIR_ANDROID)/ecapture
$(CMD_CP) release_notes.txt $(TAR_DIR_ANDROID)/release_notes.txt
$(CMD_CP) $(RELEASE_NOTES) $(TAR_DIR_ANDROID)/release_notes.txt
$(CMD_TAR) -czf $(OUT_ARCHIVE_ANDROID) $(TAR_DIR_ANDROID)
cd $(OUTPUT_DIR)
$(CMD_CHECKSUM) $(TAR_DIR_ANDROID).tar.gz >> ./../$(OUT_CHECKSUMS)
Expand All @@ -194,7 +194,7 @@ publish: \
.check_$(CMD_GITHUB)
#
# release it!
$(CMD_GITHUB) release create $(SNAPSHOT_VERSION) $(OUT_ARCHIVE) $(OUT_ARCHIVE_ANDROID) $(OUT_CHECKSUMS) --title "eCapture $(SNAPSHOT_VERSION)" --notes-file release_notes.txt
$(CMD_GITHUB) release create $(SNAPSHOT_VERSION) $(OUT_ARCHIVE) $(OUT_ARCHIVE_ANDROID) $(OUT_CHECKSUMS) --title "eCapture $(SNAPSHOT_VERSION)" --notes-file $(RELEASE_NOTES)

.PHONY: clean
clean:
Expand Down

0 comments on commit 078f180

Please sign in to comment.