workflowupdated #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Release QuickFill" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| - '.gitignore' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| 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 | |
| run: pnpm build && pnpm package | |
| - 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 is the latest production build of the QuickFill extension. | |
| ### 🛠 How to install (100% Free): | |
| 1. Download `QuickFill-Production.zip` below. | |
| 2. Extract the ZIP into a folder on your computer. | |
| 3. Go to `chrome://extensions/` in your Chrome browser. | |
| 4. Enable **Developer Mode** (top right corner). | |
| 5. Click **Load Unpacked** and select the extracted folder. | |
| *Note: All your data is stored locally on your device.* | |
| files: build/chrome-mv3-prod.zip | |
| draft: false | |
| prerelease: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |