Windows x64 build Release Moz-Artifact #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
# © 2023 Floorp Projects & Contributors | |
name: "(A) ⚒ Windows build" | |
on: | |
workflow_dispatch: | |
inputs: | |
release: | |
type: boolean | |
required: true | |
debug: | |
type: boolean | |
required: true | |
package-moz-artifact: | |
type: boolean | |
required: true | |
code-coverage: | |
type: boolean | |
required: true | |
run-name: Windows x64 build${{toJSON(inputs.debug) == 'true' && ' Debug' || ''}}${{toJSON(inputs.release) == 'true' && ' Release' || ''}}${{toJSON(inputs.package-moz-artifact) == 'true' && ' Moz-Artifact' || ''}}${{toJSON(inputs.code-coverage)=='true'&&' codecov'||''}} | |
jobs: | |
run-main: | |
name: win-x64 | |
uses: ./.github/workflows/windows_build.yml | |
with: | |
debug: ${{inputs.debug}} | |
package-moz-artifact: ${{inputs.package-moz-artifact}} | |
release: ${{inputs.release}} | |
code-coverage: ${{inputs.code-coverage}} |