-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
50 lines (34 loc) 路 883 Bytes
/
Copy pathbuild_snap.yml
File metadata and controls
50 lines (34 loc) 路 883 Bytes
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
44
45
46
47
48
name: build_snap
on:
workflow_dispatch:
inputs:
select_branch:
description: select build branch
default: snap
type: choice
options:
- snap
- master
jobs:
build_snap:
runs-on: ubuntu-latest
steps:
- name: Checkout selected branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.select_branch }}
- name: Use Node.js 16
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install snapcraft
run: sudo snap install snapcraft --classic
- name: Install dependencies
run: npm ci
- name: Prepare package
run: npm run pack:prepare
- name: Build and publish Snap
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
run: |
npm run pack:linux:publish