-
-
Notifications
You must be signed in to change notification settings - Fork 0
152 lines (121 loc) Β· 5.89 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
146
147
148
149
150
151
152
###############################################################################
# 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 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
#########################################################################
- name: β¬οΈπ Cancel Previous Runs
uses: styfle/[email protected]
- name: β¬οΈπ Checkout
uses: actions/checkout@v4
- name: β¬οΈπ₯‘ Install pnpm
uses: pnpm/action-setup@v4
- name: β¬οΈπ’ Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: β¬οΈπ¦ Install dependencies
run: |
pnpm install --no-frozen-lockfile
#########################################################################
# BUILD PKG
#########################################################################
- name: π Build
run: pnpm build
#########################################################################
# GET PKG INFO
#########################################################################
- name: π¦π Get package.json data
id: pkg
run: |
echo "description=$(jq -r '.description' ./package.json)" >> $GITHUB_OUTPUT
echo "name=$(jq -r '.name' ./package.json)" >> $GITHUB_OUTPUT
echo "version=$(jq -r '.version' ./package.json)" >> $GITHUB_OUTPUT
echo "firefox_store_id=$(jq -r '.extra.releases.firefox.storeId' ./package.json)" >> $GITHUB_OUTPUT
echo "chrome_store_id=$(jq -r '.extra.releases.chrome.storeId' ./package.json)" >> $GITHUB_OUTPUT
echo "edge_store_id=$(jq -r '.extra.releases.edge.storeId' ./package.json)" >> $GITHUB_OUTPUT
#########################################################################
# GITHUB RELEASE
#########################################################################
- name: π§©ποΈ Create Github release
uses: ncipollo/release-action@v1
with:
tag: "${{ steps.pkg.outputs.version }}"
name: '${{ steps.pkg.outputs.version }}'
draft: false
prerelease: false
allowUpdates: true
artifacts: "dist/exts/*"
body: |
<p><b> ${{ steps.pkg.outputs.name }} v${{ steps.pkg.outputs.version }}</b></p>
<p>${{ steps.pkg.outputs.description }}</p>
𧩠[CHANGELOG]( https://github.com/pigeonposse/${{ steps.pkg.outputs.name }}/blob/main/CHANGELOG.md)
π [LICENSE](https://github.com/pigeonposse/${{ steps.pkg.outputs.name }}/blob/main/LICENSE)
π [PRIVACY](https://github.com/pigeonposse/${{ steps.pkg.outputs.name }}/blob/main/POLICY.md)
#########################################################################
# PUBLISH IN FIREFOX WEB STORE
#########################################################################
- name: π§©π¦ Upload FIREFOX extension
uses: trmcnvn/firefox-addon@v1
with:
uuid: ${{ steps.pkg.outputs.firefox_store_id }}
xpi: dist/comp/firefox-${{ steps.pkg.outputs.name }}-${{ steps.pkg.outputs.version }}.zip
manifest: dist/firefox/manifest.json
api-key: ${{ secrets.FIREFOX_API_KEY }}
api-secret: ${{ secrets.FIREFOX_API_SECRET }}
continue-on-error: true
#########################################################################
# PUBLISH IN CHROME WEB STORE
#########################################################################
- name: 𧩠Upload CHROME extension
uses: wdzeng/[email protected]
with:
refresh-token: '${{ secrets.CHOME_EXTENSION_REFRESH_TOKEN }}'
client-id: '${{ secrets.CHOME_EXTENSION_CLIENT_ID }}'
client-secret: '${{ secrets.CHOME_EXTENSION_CLIENT_SECRET }}'
zip-path: dist/exts/${{ steps.pkg.outputs.name }}-chrome.zip
extension-id: '${{steps.pkg.outputs.chrome_store_id}}'
continue-on-error: true
#########################################################################
# PUBLISH IN EDGE WEB STORE
#########################################################################
- name: 𧩠Upload EDGE extension
uses: wdzeng/[email protected]
with:
product-id: ${{ steps.pkg.outputs.edge_store_id }}
client-id: ${{ secrets.EDGE_CLIENT_ID }}
client-secret: ${{ secrets.EDGE_CLIENT_SECRET }}
access-token-url: ${{ secrets.EDGE_ACCESS_TOKEN_URL }}
zip-path: dist/exts/${{ steps.pkg.outputs.name }}-edge.zip
continue-on-error: true
###############################################################################