Merge pull request #9 from space-ros/results-fixes #6
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 | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
snap-file: ${{ steps.build-snap.outputs.snap }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# full history for latest tag name | |
fetch-depth: 0 | |
- uses: snapcore/action-build@v1 | |
id: build-snap | |
# Make sure the snap is installable | |
- run: | | |
sudo snap install --dangerous ${{ steps.build-snap.outputs.snap }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: process-sarif | |
path: ${{ steps.build-snap.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: process-sarif | |
path: . | |
- uses: snapcore/action-publish@v1 | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }} | |
if: ${{ env.SNAPCRAFT_STORE_CREDENTIALS != '' }} | |
with: | |
snap: ${{needs.build.outputs.snap-file}} | |
release: ${{ startsWith(github.ref, 'refs/tags/') && 'candidate' || 'edge'}} |