Skip to content

Commit

Permalink
ci: automatically run debug builds for all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMakesGames committed Sep 3, 2024
1 parent dc9f404 commit 956bd86
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/debug-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: 'debug_build'
on: workflow_dispatch
on:
push:
branches:
- main

# This workflow will build your tauri app without uploading it anywhere.

Expand All @@ -8,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest]
platform: [macos-latest, ubuntu-20.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -43,3 +46,4 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: "${{ join(fromJSON(steps.build.outputs.artifactPaths), '\n') }}"
name: 'stellarmaps-debug-${{ matrix.platform }}'

0 comments on commit 956bd86

Please sign in to comment.