Skip to content

Update config.yml

Update config.yml #175

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build Snap package
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- amd64
- arm64
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: diddlesnaps/[email protected]
id: snapcraft
with:
architecture: ${{ matrix.platform }}
# - uses: snapcore/action-build@v1
# id: snapcraft
- uses: actions/upload-artifact@v4
with:
name: snap-package
path: ${{ steps.snapcraft.outputs.snap }}