Hmmm, anyone see anything glaringly wrong with my ...
# support-framework
q
Hmmm, anyone see anything glaringly wrong with my CI action?
s
Thread automatically created by nahtnam in #978320682985349130
q
Copy code
on:
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - uses: actions/setup-node@v3
        with:
          node-version: lts/*
          cache: 'npm'

      - run: npm ci
      - run: npm run build -- --zip

      - uses: actions/upload-artifact@v3
        with:
          name: chrome-mv3-prod.zip
          path: build/chrome-mv3-prod.zip

      - uses: plasmo-corp/bpp@v2
        with:
          keys: ${{ secrets.SUBMIT_KEYS }}
          artifact: build/chrome-mv3-prod.zip
For some reason the zip thats uploaded to github only has the manifest and 3 images. Nothing else
Running locally gives me the fully working zip
When I install the chrome extension off the webstore its also completely messed up so Im pretty sure im doing something wrong
2 Views