Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .github/workflows/desktop_make.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
name: Desktop package apps
on:
workflow_dispatch:
inputs:
macOS:
description: 'MacOS'
required: false
type: boolean
windows:
description: 'Windows'
required: false
type: boolean
linux:
description: 'Linux'
required: false
type: boolean

concurrency:
group: desktop-packaging-${{ github.ref }}
Expand All @@ -9,6 +22,7 @@ concurrency:
jobs:
package-macos:
name: Package macOS app
if: ${{ inputs.macOS }}
runs-on: macos-latest
env:
ORGANIZATION: ooni
Expand Down Expand Up @@ -51,6 +65,7 @@ jobs:

package-windows:
name: Package Windows app
if: ${{ inputs.windows }}
runs-on: windows-latest
env:
ORGANIZATION: ooni
Expand Down Expand Up @@ -85,6 +100,7 @@ jobs:

package-linux:
name: Package Linux app
if: ${{ inputs.linux }}
runs-on: ubuntu-latest
env:
ORGANIZATION: ooni
Expand Down
Loading