erge branch 'main' of https://github.com/DJ-InfinityCoder/QuickFill #1
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: "Submit to Web Store" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| - '.gitignore' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Cache pnpm modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.pnpm-store | |
| key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}- | |
| - uses: pnpm/action-setup@v2.2.4 | |
| with: | |
| version: latest | |
| run_install: true | |
| - name: Use Node.js 16.x | |
| uses: actions/setup-node@v3.4.1 | |
| with: | |
| node-version: 16.x | |
| cache: "pnpm" | |
| - name: Build the extension | |
| run: pnpm build | |
| - name: Package the extension into a zip artifact | |
| run: pnpm package | |
| - name: Browser Platform Publish (Chrome Web Store) | |
| uses: PlasmoHQ/bpp@v3 | |
| continue-on-error: true # Don't fail if secrets aren't set up yet | |
| with: | |
| keys: ${{ secrets.SUBMIT_KEYS }} | |
| artifact: build/chrome-mv3-prod.zip | |
| - name: Create / Update GitHub Release (Free Distribution) | |
| uses: softprops/action-gh-release@v1 | |
| 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 (Free): | |
| 1. Download `QuickFill-Production.zip` below. | |
| 2. Extract the ZIP into a folder. | |
| 3. Go to `chrome://extensions/` in Chrome. | |
| 4. Enable **Developer Mode**. | |
| 5. Click **Load Unpacked** and select the extracted folder. | |
| files: build/chrome-mv3-prod.zip | |
| draft: false | |
| prerelease: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |