-
-
Notifications
You must be signed in to change notification settings - Fork 0
145 lines (113 loc) · 5.46 KB
/
publish.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
###############################################################################
# PLBLISH CHROME EXTENSION AND FIREFOX EXTENSION
###############################################################################
name: Publish
###############################################################################
# ON
###############################################################################
on:
push:
tags:
- '*'
workflow_dispatch:
inputs:
version:
description: 'Set number for release version'
type: string
required: true
###############################################################################
# JOBS
###############################################################################
jobs:
build:
name: Publish web extensions (Chrome & firefox) and release in github
# for the Safari build. If set to 'macos-13-xlarge' or 'macos-latest' safari build it will not be compatible with macos Intel processor
# @see https://github.com/actions/runner-images?tab=readme-ov-file#available-images
runs-on: macos-13
permissions:
contents: write
###########################################################################
# STEPS
###########################################################################
steps:
#########################################################################
# INIT & BUILD PKG
#########################################################################
- name: checks-out repository
uses: actions/checkout@v3
#########################################################################
# IF IS IN MAIN BRANCH
#########################################################################
# - name: Exit if not on MAIN branch
# if: endsWith(github.ref, 'main') == false
# run: exit -1
#########################################################################
# BUILD PKG
#########################################################################
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
- name: Install pkg dependencies
run: |
pnpm install
pnpm build
#########################################################################
# GET PKG INFO
#########################################################################
- name: Get package info
id: package
uses: codex-team/[email protected]
# #########################################################################
# # CHROME
# #########################################################################
# - name: Upload CHROME extension
# uses: Klemensas/[email protected]
# with:
# refresh-token: '${{ secrets.CHOME_EXTENSION_REFRESH_TOKEN }}'
# client-id: '${{ secrets.CHOME_EXTENSION_CLIENT_ID }}'
# client-secret: '${{ secrets.CHOME_EXTENSION_CLIENT_SECRET }}'
# file-name: '.dist/comp/chrome-${{ steps.package.outputs.name }}-${{ steps.package.outputs.version }}.zip'
# app-id: 'nnkleafalbcmeamobndfmcjhphipnnaj'
# publish: true
# # uses: mnao305/[email protected]
# # with:
# # file-path: dist/comp/chrome-${{ steps.package.outputs.name }}-${{ steps.package.outputs.version }}.zip
# # # id of the extension in chrome
# # extension-id: nnkleafalbcmeamobndfmcjhphipnnaj
# # # instructions to get secrets:
# # # https://github.com/fregante/chrome-webstore-upload/blob/main/How%20to%20generate%20Google%20API%20keys.md
# # client-id: ${{ secrets.CHOME_EXTENSION_CLIENT_ID }}
# # client-secret: ${{ secrets.CHOME_EXTENSION_CLIENT_SECRET }}
# # refresh-token: ${{ secrets.CHOME_EXTENSION_REFRESH_TOKEN }}
# #########################################################################
# # FIREFOX
# #########################################################################
- name: Upload FIREFOX extension
uses: trmcnvn/firefox-addon@v1
with:
# uuid is only necessary when updating an existing addon,
# omitting it will create a new addon
uuid: '{5620af48-521a-4fbd-a153-26f3a7dfb613}'
xpi: dist/comp/firefox-${{ steps.package.outputs.name }}-${{ steps.package.outputs.version }}.zip
manifest: dist/firefox/manifest.json
# get keys in:
# https://addons.mozilla.org/en-US/developers/addon/api/key/
api-key: ${{ secrets.FIREFOX_API_KEY }}
api-secret: ${{ secrets.FIREFOX_API_SECRET }}
continue-on-error: true
#########################################################################
# GITHUB RELEASE
#########################################################################
- name: Create Github release
uses: ncipollo/release-action@v1
with:
tag: "${{ github.event.inputs.version }}"
name: 'Shortskiller v${{ github.event.inputs.version }}'
draft: false
prerelease: false
allowUpdates: true
artifacts: "dist/exts/*"
body: |
🧩 View changelog at: https://github.com/pigeonposse/shortskiller/blob/main/CHANGELOG.md
📜 View license: https://github.com/pigeonposse/shortskiller/blob/main/LICENSE
###############################################################################