Skip to content

Commit

Permalink
Fix archive command in build
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Dye <[email protected]>
  • Loading branch information
ecdye committed Sep 18, 2024
1 parent 97547e9 commit 8ee4871
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
configuration: release

- name: Archive
run: tar cvJf ~/macSup2Srt.tar.xz -C build/macSup2Srt/Build/Products/Release/macSup2Srt
run: tar cvJf ~/macSup2Srt.tar.xz -C build/macSup2Srt/Build/Products/Release macSup2Srt

- name: Save artifacts
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
configuration: release

- name: Archive
run: tar cvJf ~/macSup2Srt.tar.xz -C build/macSup2Srt/Build/Products/Release/macSup2Srt
run: tar cvJf ~/macSup2Srt.tar.xz -C build/macSup2Srt/Build/Products/Release macSup2Srt

- name: Publish
uses: softprops/action-gh-release@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For more information on accuracy, see [Accuracy](#accuracy) below.
### Building

> [!IMPORTANT]
> This project requires Xcode 16 to work properly due to breaking changes in the project format.
> This project requires at least Xcode 16 to work properly due to breaking changes, made by Apple, to the Xcode project format.
To get started with macSup2Srt, clone the repository and then build the project with Xcode.

Expand Down

0 comments on commit 8ee4871

Please sign in to comment.