forked from spicetify/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
125 lines (106 loc) · 4.11 KB
/
build.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: Build
on: [pull_request, push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: go build .
- name: Format
run: |
gofmt -s -l .
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
release:
name: Release
strategy:
matrix:
os: ["linux", "darwin", "windows"]
arch: ["amd64", "arm64", "386"]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get Tag
run: echo "TAG=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
- name: Is Unix Platform
run: echo "IS_UNIX=${{ matrix.os != 'windows' && matrix.arch != '386' }}" >> $GITHUB_ENV
- name: Is Windows Platform
run: echo "IS_WIN=${{ matrix.os == 'windows' && matrix.arch != 'arm64' }}" >> $GITHUB_ENV
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
if: env.IS_UNIX == 'true' || env.IS_WIN == 'true'
run: |
go build -ldflags "-X main.version=${{ env.TAG }}" -o "./spicetify${{ matrix.os == 'windows' && '.exe' || '' }}"
chmod +x "./spicetify${{ matrix.os == 'windows' && '.exe' || '' }}"
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
- name: 7z - .tar
if: env.IS_UNIX == 'true'
uses: edgarrc/action-7z@v1
with:
args: 7z a -bb0 "spicetify-${{ env.TAG }}-${{ matrix.os }}-${{ matrix.arch }}.tar" "./spicetify" "./CustomApps" "./Extensions" "./Themes" "./jsHelper" "globals.d.ts" "css-map.json"
- name: 7z - .tar.gz
if: env.IS_UNIX == 'true'
uses: edgarrc/action-7z@v1
with:
args: 7z a -bb0 -sdel -mx9 "spicetify-${{ env.TAG }}-${{ matrix.os }}-${{ matrix.arch }}.tar.gz" "spicetify-${{ env.TAG }}-${{ matrix.os }}-${{ matrix.arch }}.tar"
- name: 7z - .zip
if: env.IS_WIN == 'true'
uses: edgarrc/action-7z@v1
with:
args: 7z a -bb0 -mx9 "spicetify-${{ env.TAG }}-${{ matrix.os }}-${{ matrix.arch == 'amd64' && 'x64' || 'x32' }}.zip" "./spicetify.exe" "./CustomApps" "./Extensions" "./Themes" "./jsHelper" "globals.d.ts" "css-map.json"
- name: Release
if: env.IS_UNIX == 'true' || env.IS_WIN == 'true'
uses: softprops/action-gh-release@v1
with:
files: "spicetify-${{ env.TAG }}-${{ matrix.os }}-${{ (matrix.os == 'windows' && matrix.arch == 'amd64' && 'x64') || (matrix.os == 'windows' && matrix.arch == '386' && 'x32') || matrix.arch }}.${{ matrix.os == 'windows' && 'zip' || 'tar.gz' }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
trigger-release:
name: Trigger Homebrew/AUR Release
runs-on: ubuntu-latest
needs: release
steps:
- name: Update AUR package
uses: fjogeleit/http-request-action@master
with:
url: http://vps.itsmeow.dev:8079/
method: GET
- name: Update Homebrew tap
uses: mislav/bump-homebrew-formula-action@v2
if: "!contains(github.ref_name, '-')"
with:
formula-name: spicetify-cli
formula-path: spicetify-cli.rb
homebrew-tap: spicetify/homebrew-tap
tag-name: ${{ github.ref_name }}
base-branch: main
download-url: https://github.com/spicetify/spicetify-cli/archive/${{ github.ref_name }}.tar.gz
commit-message: |
chore: {{version}} release
env:
COMMITTER_TOKEN: ${{ secrets.SPICETIFY_GITHUB_TOKEN }}
trigger-winget-release:
name: Trigger Winget Release
runs-on: windows-latest # Action can only run on Windows
needs: release
steps:
- name: Update Winget package
uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: Spicetify.Spicetify
installers-regex: '-windows-\w+\.zip$'
token: ${{ secrets.SPICETIFY_WINGET_TOKEN }}