-
Notifications
You must be signed in to change notification settings - Fork 543
43 lines (42 loc) · 1.12 KB
/
snap.yaml
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
33
34
35
36
37
38
39
40
41
42
43
name: snap
on:
push:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: ubuntu-22.04
concurrency:
group: snap-build
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: snapcore/action-build@v1
id: build-snap
# Make sure the snap is installable
- run: |
sudo apt -y remove sosreport
sudo snap install --classic --dangerous ${{ steps.build-snap.outputs.snap }}
sudo snap alias sosreport.sos sos
# Do some testing with the snap
- run: |
sudo sos help
- uses: snapcore/action-publish@v1
if: ${{ github.event_name == 'push' }}
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }}
with:
snap: ${{ steps.build-snap.outputs.snap }}
release: "latest/edge"
- uses: snapcore/action-publish@v1
if: ${{ github.event_name == 'release' }}
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }}
with:
snap: ${{ steps.build-snap.outputs.snap }}
release: "latest/candidate"