Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/actions/build-plugin/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ runs:
run: |
: Run macOS Build

chmod +x .github/scripts/build-macos
local -a build_args=(--config ${{ inputs.config }})
if (( ${+RUNNER_DEBUG} )) build_args+=(--debug)

Expand Down Expand Up @@ -65,6 +66,7 @@ runs:
run: |
: Run Ubuntu Build

chmod +x .github/scripts/build-ubuntu
local -a build_args=(
--target ubuntu-${{ inputs.target }}
--config ${{ inputs.config }}
Expand Down
4 changes: 4 additions & 0 deletions .github/actions/package-plugin/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ runs:
if [[ '${{ inputs.notarize }}' == 'true' ]] package_args+=(--notarize)
if [[ '${{ inputs.package }}' == 'true' ]] package_args+=(--package)

chmod +x .github/scripts/package-macos

.github/scripts/package-macos ${package_args}

- name: Install Dependencies 🛍️
Expand Down Expand Up @@ -94,6 +96,8 @@ runs:

if [[ '${{ inputs.package }}' == 'true' ]] package_args+=(--package)

chmod +x .github/scripts/package-ubuntu

.github/scripts/package-ubuntu ${package_args}

- name: Run Windows Packaging
Expand Down
1 change: 1 addition & 0 deletions .github/actions/run-clang-format/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ runs:
print ::group::Install clang-format-19
brew install --quiet obsproject/tools/clang-format@19
print ::endgroup::
chmod +x ./build-aux/run-clang-format

print ::group::Run clang-format-19
local -a changes=(${(s:,:)CHANGED_FILES//[\[\]\'\"]/})
Expand Down
1 change: 1 addition & 0 deletions .github/actions/run-gersemi/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ runs:
print ::group::Install gersemi
brew install --quiet obsproject/tools/gersemi
print ::endgroup::
chmod +x ./build-aux/run-gersemi

print ::group::Run gersemi
local -a changes=(${(s:,:)CHANGED_FILES//[\[\]\'\"]/})
Expand Down