Skip to content

Commit

Permalink
Update action to produce a universal launcher for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
EliteAsian123 committed Jun 11, 2024
1 parent d639f9b commit f8c13b8
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
keyPassword:
description: "Key Password"
description: 'Key Password'
required: true
type: string

Expand All @@ -15,7 +15,12 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
- platform: 'macos-latest'
args: '--target universal-apple-darwin'
- platform: 'ubuntu-20.04'
args: ''
- platform: 'windows-latest'
args: ''

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -40,7 +45,8 @@ jobs:
TAURI_KEY_PASSWORD: ${{ inputs.keyPassword }}
with:
tagName: v__VERSION__
releaseName: 'YARG Launcher v__VERSION__'
releaseName: 'YARC Launcher v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false
prerelease: false
args: ${{ matrix.args }}

0 comments on commit f8c13b8

Please sign in to comment.