Hi, I set up my Folding at Home snap to build and release using TravisCI.
This is the relevant portion of the travis.yml (thanks to @crascit for his good one on cmake)
- stage: deploy
if: repo = fcole90/fah-snap and branch = master and type = push
os: linux
deploy:
provider: snap
snap: folding-at-home-fcole90_*.snap
channel: stable
cleanup: false
skip_cleanup: true
What happens is that the release gets nevertheless pushed to edge instead of stable Should I write
latest/stable
instead? Or is it a bug?