Compare commits

..

No commits in common. "woodpecker" and "main" have entirely different histories.

View File

@ -1,26 +0,0 @@
{
steps: {
build: {
image: "alpine",
when: {
branch: ["main", "woodpecker"],
event: ["push", "pull_request", "manual"]
},
commands: [
"echo 'Setting up Flatpak.'",
"apk add flatpak-builder",
"flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo",
"flatpak update -y",
"echo 'Installing Stow Flatpak Dependancies.'",
"flatpak-builder --install-deps-only --install-deps-from=flathub build org.gnu.Stow.yml",
"echo 'Building Stow in a Flatpak.'",
"flatpak-builder --install build org.gnu.Stow.yml",
"echo 'Packaging Stow Flatpak Bundle.'",
"flatpak build-bundle repo stowapp.flatpak org.gnu.Stow"
]
}
}
}