Skip to content

Builds

Builds #9

Workflow file for this run

name: Builds
on:
workflow_dispatch: # Only enable manual runs for now
jobs:
build:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Step 2: Set up Snapcraft
- name: Set up Snapcraft
uses: snapcore/action-build@v1
id: build
with:
snapcraft-channel: stable
# Step 3: Validate the built Snap
- name: Validate Snap
uses: diddlesnaps/snapcraft-review-action@v1
with:
snap: ${{ steps.build.outputs.snap }}
isClassic: 'false'