add moving variance #15
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_core22 | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
snap-file: ${{ steps.build-snap22.outputs.snap }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# full history for latest tag name | |
fetch-depth: 0 | |
- run: mv snap_core22 snap | |
- uses: snapcore/action-build@v1 | |
id: build-snap22 | |
# Make sure the snap is installable | |
- run: | | |
sudo snap install --dangerous ${{ steps.build-snap22.outputs.snap }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: plotjuggler-snap22 | |
path: ${{ steps.build-snap22.outputs.snap }} | |
publish: | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: plotjuggler-snap22 | |
path: . | |
- uses: snapcore/action-publish@v1 | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }} | |
with: | |
snap: ${{needs.build.outputs.snap-file}} | |
release: humble/${{ startsWith(github.ref, 'refs/tags/') && 'candidate' || 'edge'}} |