Add .woodpecker.json
Some checks failed
ci/woodpecker/push/woodpecker.json Pipeline failed

This commit is contained in:
Rebekah 2024-07-06 19:49:05 -04:00
parent ea0d6a7aaa
commit 2bd9c3ee9c

21
.woodpecker.json Normal file
View File

@ -0,0 +1,21 @@
{
"steps": {
"build": {
"image": "alpine:latest",
"when": {
"branch": ["main", "woodpecker"],
"event": ["push", "pull_request", "manual"]
},
"commands": [
"echo Install the builder",
"apk add flatpak-builder",
"echo Building Stow in a Flatpak",
"flatpak-builder --user --install build org.gnu.Stow.yml",
"echo Packaging Stow Flatpak Bundle",
"flatpak build-bundle repo stowapp.flatpak org.gnu.Stow"
]
}
}
}