-
-
Notifications
You must be signed in to change notification settings - Fork 12
32 lines (32 loc) · 915 Bytes
/
snap.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
on:
push:
branches: [ "master" ]
pull_request:
workflow_dispatch:
name: Snap
permissions:
id-token: write
contents: read
jobs:
snap:
name: "Test if the Snap can be built from the latest commit in the branch"
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
- name: Build Snap
uses: snapcore/action-build@v1
id: snapcraft-build
with:
snapcraft-args: "-v"
- uses: actions/upload-artifact@v3
with:
name: inspector-amd64-snap
path: ${{ steps.snapcraft-build.outputs.snap }}
- name: Upload and release Inspector snap with every changes
uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }}
with:
snap: ${{ steps.snapcraft-build.outputs.snap }}
release: ${{'edge'}}