Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianFlechtner authored Aug 29, 2024
1 parent d32df98 commit 1f25b2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ runs:
- name: Build Windows App
if: inputs.build == 'true' && runner.os == 'Windows' && inputs.nsis == 'false'
working-directory: ${{ inputs.app-working-directory }}
run: wails build --platform ${{inputs.build-platform}} -webview2 ${{inputs.wails-build-webview2}} -o ${{inputs.build-name}}
run: env COG_ENABLED=1 wails build --platform ${{inputs.build-platform}} -webview2 ${{inputs.wails-build-webview2}} -o ${{inputs.build-name}}
shell: bash
- name: Build Windows App + Installer
if: inputs.build == 'true' && runner.os == 'Windows' && inputs.nsis == 'true'
working-directory: ${{ inputs.app-working-directory }}
run: wails build --platform ${{inputs.build-platform}} -webview2 ${{inputs.wails-build-webview2}} -nsis -o ${{inputs.build-name}}
run: env COG_ENABLED=1 wails build --platform ${{inputs.build-platform}} -webview2 ${{inputs.wails-build-webview2}} -nsis -o ${{inputs.build-name}}
shell: bash
- name: Add macOS perms
if: inputs.build == 'true' && runner.os == 'macOS'
Expand Down

0 comments on commit 1f25b2c

Please sign in to comment.