Skip to content

Commit

Permalink
Update build-release-vc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-soft authored Sep 1, 2024
1 parent 12f9258 commit d5cc177
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build-release-vc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 2024-02-10 22:30
# 2024-09-02 00:40
# soft_fast_search patch
name: Build release VC

on:
Expand Down Expand Up @@ -26,6 +27,10 @@ on:
msbuild_cl_ARM64_release:
default: true
type: boolean
soft_fast_search_patch:
default: true
type: boolean


env:
PROG_NAME: "Far3"
Expand Down Expand Up @@ -97,6 +102,15 @@ jobs:
- name: Checkout source
uses: deep-soft/checkout@v4

- name: soft_fast_search_patch
if: ${{ inputs.soft_fast_search_patch }}
continue-on-error: false
run: |
ls -la patch/filelist.diff || true;
if [[ -f patch/filelist.diff]]; then
git apply --verbose patch/filelist.diff
fi
- name: Get program version
continue-on-error: false
shell: bash
Expand Down

0 comments on commit d5cc177

Please sign in to comment.