Skip to content

Commit f9c9abe

Browse files
cleanup
1 parent c31e4c5 commit f9c9abe

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/flatpak-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
options: --privileged
1414
steps:
1515
- uses: actions/checkout@master
16-
- uses: bilelmoussaoui/flatpak-github-actions@build
16+
- uses: bilelmoussaoui/flatpak-github-actions@master
1717
with:
1818
bundle: org.example.MyApp.Devel.flatpak
1919
manifest-path: org.example.MyApp.yaml

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929
with:
3030
bundle: "palette.flatpak"
3131
manifest-path: "org.gnome.zbrown.Palette.yml"
32-
app-id: "org.gnome.zbrown.Palette"
33-
flatpak-module: "palette"
3432
```
3533
3634
## Inputs

index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const yaml = require('js-yaml')
88
const bundle = core.getInput('bundle') || 'app.flatpak'
99
const artifactName = bundle.replace('.flatpak', '')
1010
const runtimeRepo = core.getInput('runtime-repo')
11-
const manifestPath = core.getInput('manifest-path') || './docker/com.github.tchx84.Flatseal.json'
12-
const runTests = true //['y', 'yes', 'true', 'enabled'].includes(core.getInput('run-tests'))
11+
const manifestPath = core.getInput('manifest-path')
12+
const runTests = true ['y', 'yes', 'true', 'enabled'].includes(core.getInput('run-tests'))
1313
const branch = 'master'
1414
const buildDir = 'flatpak_app'
1515
const repoName = 'repo'
@@ -88,7 +88,6 @@ const initBuild = (manifestPath, callback) => {
8888

8989
const build = async (manifest) => {
9090
const appId = manifest['app-id']
91-
core.info(JSON.stringify(manifest))
9291
core.info('Building the flatpak...')
9392

9493
await exec.exec(`xvfb-run --auto-servernum flatpak-builder`, [

0 commit comments

Comments
 (0)