refactor: standardize build process and remove build-tauri target #5846
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request simplifies the build process by consolidating the
build
andbuild-tauri
targets into a singlebuild
target across multiple files. The changes remove the deprecatedbuild-tauri
target and update workflows and configurations to use the unifiedbuild
target.Build process unification:
.github/workflows/template-tauri-build-linux-x64.yml
: Replacedmake build-tauri
withmake build
in the Linux build workflow..github/workflows/template-tauri-build-macos.yml
: Replacedmake build-tauri
withmake build
in the macOS build workflow..github/workflows/template-tauri-build-windows-x64.yml
: Replacedmake build-tauri
withmake build
in the Windows build workflow.Code cleanup:
Makefile
: Removed thebuild-tauri
target, consolidating its functionality under thebuild
target.mise.toml
: Removed the deprecatedbuild-tauri
task and updated thebuild
task to include all necessary steps.Important
Consolidates build process by removing
build-tauri
target and updating workflows and configurations to use a unifiedbuild
target.make build-tauri
withmake build
in.github/workflows/template-tauri-build-linux-x64.yml
,.github/workflows/template-tauri-build-macos.yml
, and.github/workflows/template-tauri-build-windows-x64.yml
.build-tauri
target fromMakefile
, consolidating its functionality underbuild
.build-tauri
task frommise.toml
and updatedbuild
task to include all necessary steps.This description was created by
for 23ba0f3. You can customize this summary. It will automatically update as commits are pushed.