mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
30 lines
735 B
YAML
30 lines
735 B
YAML
# See: https://github.com/snapcore/action-build
|
|
name: SDRangel snap release build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- snap
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
build_snap:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
- uses: snapcore/action-build@v1
|
|
id: snapcraft
|
|
- name: Get version
|
|
id: get_version
|
|
run: echo "version=$(echo ${{github.ref_name}} | cut -c2-)" >> $env:GITHUB_OUTPUT
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: sdrangel-${{ steps.get_version.outputs.version }}-amd64.snap
|
|
path: ${{ steps.snapcraft.outputs.snap }}
|