Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
| `build-dir` | The directory to build the application in. | Optional | `flatpak_app` |
| `repo-dir` | The directory of the flatpak repository. | Optional | `repo` |
| `state-dir` | The directory to store the build state/cache in. | Optional | `.flatpak-builder` |
| `keep-build-dirs` | Keep build directories after the build finishes (passes `--keep-build-dirs` to flatpak-builder). Useful for debugging intermediate files. | Optional | `false` |
| `verbose` | Enable verbosity | Optional | `false` |
| `upload-artifact` | Whether to upload the resulting bundle or not as an artifact | Optional | `true` |

Expand Down
7 changes: 7 additions & 0 deletions flatpak-builder/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ inputs:
Defines the cache-key to use.
Defaults to flatpak-builder-${arch}-${sha256(manifestPath)}
required: false
keep-build-dirs:
description: >
Keep build directories after the build finishes, passing `--keep-build-dirs` flag
to flatpak-builder.
Possible values: true, enabled, yes, y. Defaults to false.
required: false
default: "false"
branch:
description: The flatpak branch.
default: "master"
Expand Down
Loading
Loading