-
-
Notifications
You must be signed in to change notification settings - Fork 35
54 lines (48 loc) · 1.56 KB
/
release.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build:
runs-on: ${{ matrix.os }}
# Platforms to build on/for
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-11]
node-version: [18.16.0]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: "setup pnpm"
uses: pnpm/action-setup@v3
with:
version: 8
# install dbus-1 dep for xosms
- if: matrix.os == 'ubuntu-latest'
name: install ubuntu deps
run: |
sudo apt update
sudo apt install libdbus-1-dev snapd
sudo snap install snapcraft --classic
- if: matrix.os == 'windows-latest'
name: install windows deps
uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.8
with:
sdk-version: 19041
- name: Install dependencies
run: |
pnpm i
- name: Build Electron release
run: pnpm release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VUE_APP_SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
VUE_APP_DISCORD_CLIENT_ID: ${{ secrets.DISCORD_CLIENT_ID }}
VUE_APP_LASTFM_API: ${{ secrets.LASTFM_API }}
VUE_APP_LASTFM_SECRET: ${{ secrets.LASTFM_SECRET }}
VUE_APP_GITHUB_REPOSITORY: ${{ github.repository }}