We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c141f3 commit bfd0d79Copy full SHA for bfd0d79
flatpak-builder/index.js
@@ -26,7 +26,7 @@ class Configuration {
26
this.runTests = core.getBooleanInput('run-tests') || false
27
// The bundle name
28
this.bundle = core.getInput('bundle') || 'app.flatpak'
29
- this.branch = core.getInput('branch')
+ this.branch = core.getInput('branch') || 'master'
30
// Whether to build a bundle or not
31
this.buildBundle = core.getBooleanInput('build-bundle') || true
32
// Whether to restore the cache or not
@@ -56,7 +56,6 @@ class Configuration {
56
this.buildDir = 'flatpak_app'
57
// The flatpak repository name
58
this.localRepoName = 'repo'
59
- this.branch = 'master'
60
// Verbosity
61
this.verbose = core.getBooleanInput('verbose') || false
62
}
0 commit comments