Skip to content

Commit

Permalink
Update non-building tasks to only build on mainline (but still skip).
Browse files Browse the repository at this point in the history
  • Loading branch information
nanodeath committed Jul 9, 2024
1 parent 364bc25 commit 7119802
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
export-windows:
name: Windows Export
runs-on: ubuntu-latest
if: false # remove if you want to enable
if: github.ref == 'refs/heads/mainline' && false # remove if you want to enable
container:
image: barichello/godot-ci:4.2.2
steps:
Expand All @@ -96,7 +96,7 @@ jobs:
export-linux:
name: Linux Export
runs-on: ubuntu-latest
if: false # remove if you want to enable
if: github.ref == 'refs/heads/mainline' && false # remove if you want to enable
container:
image: barichello/godot-ci:4.2.2
steps:
Expand All @@ -122,7 +122,8 @@ jobs:
export-mac:
name: Mac Export
runs-on: ubuntu-latest
if: false # remove if you want to enable, but it's a whole thing: https://docs.godotengine.org/en/stable/tutorials/export/exporting_for_macos.html
if: github.ref == 'refs/heads/mainline' && false # remove if you want to enable
# but it's a whole thing: https://docs.godotengine.org/en/stable/tutorials/export/exporting_for_macos.html
container:
image: barichello/godot-ci:4.2.2
steps:
Expand Down

0 comments on commit 7119802

Please sign in to comment.