Skip to content

Commit

Permalink
Fix missing version in DMG, Signed .app, and Steam upload (#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeage authored Aug 5, 2024
1 parent 6fd685f commit cdaaa81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ jobs:

signmacos:
name: Sign the MacOS .app
needs: [build]
needs: [configuration, build]
if: |
github.event_name == 'push' &&
github.repository == 'icosa-foundation/open-brush' &&
Expand Down Expand Up @@ -631,7 +631,7 @@ jobs:
createdmg:
name: Create and Notarize DMG
needs: [signmacos]
needs: [configuration, signmacos]
if: |
github.event_name == 'push' &&
github.repository == 'icosa-foundation/open-brush' &&
Expand Down Expand Up @@ -888,7 +888,7 @@ jobs:

publish_steam:
name: Publish Steam Release
needs: [build, signmacos]
needs: [configuration, build, signmacos]
if: |
github.event_name == 'push' &&
github.repository == 'icosa-foundation/open-brush' &&
Expand Down

0 comments on commit cdaaa81

Please sign in to comment.