-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (58 loc) · 2.09 KB
/
submit.yml
File metadata and controls
69 lines (58 loc) · 2.09 KB
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
name: "Release QuickFill"
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- '.gitignore'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build and Package Chrome
run: pnpm build && pnpm package
- name: Build and Package Firefox
run: pnpm build:firefox && pnpm package:firefox
- name: Create / Update GitHub Release (Free Distribution)
uses: softprops/action-gh-release@v2
with:
tag_name: latest
name: QuickFill Production Build
body: |
## ⚡ QuickFill Production Build
This release contains the latest builds for both **Chrome** and **Firefox**.
### 🛠 How to install (100% Free):
#### For Chrome:
1. Download `QuickFill-Production.zip` (Chrome build).
2. Extract to a folder.
3. Go to `chrome://extensions/` and enable **Developer Mode**.
4. Click **Load Unpacked** and select the folder.
#### For Firefox:
1. Download `QuickFill-Production-Firefox.zip` (Firefox build).
2. Go to `about:debugging#/runtime/this-firefox` in Firefox.
3. Click **Load Temporary Add-on...**
4. Select the `.zip` file directly.
*Note: Firefox temporary add-ons are removed when the browser restarts. For permanent use, sideloading on Firefox requires the 'Developer Edition' or 'Nightly' version.*
files: |
build/chrome-mv3-prod.zip
build/firefox-mv2-prod.zip
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}