add: github workflow automated build #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Snap Builder | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allow manual trigger | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the code | |
- uses: actions/checkout@v4 | |
# Build the snap | |
- uses: snapcore/action-build@v1 | |
id: build | |
# Upload the built artifact | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.build.outputs.snap }} | |
path: ${{ steps.build.outputs.snap }} |