Snap notes (#1929)

This commit is contained in:
John Kerl 2026-01-02 13:29:41 -05:00 committed by GitHub
parent 7b8822e2ef
commit 5b6f64669a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 184 additions and 4 deletions

26
.github/workflows/release-snap.yaml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Release
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
snap:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build snap
uses: snapcore/action-build@v1
id: build
- name: Publish to Snap Store
uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
with:
snap: ${{ steps.build.outputs.snap }}
# release: stable # or edge, beta, candidate
release: stable