mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-08 22:21:07 +00:00
fix: github action
This commit is contained in:
parent
51599189cb
commit
14cdc486f3
3 changed files with 8 additions and 6 deletions
4
.github/actions/buildextension/action.yml
vendored
4
.github/actions/buildextension/action.yml
vendored
|
|
@ -19,11 +19,11 @@ runs:
|
|||
|
||||
- name: Pack extension
|
||||
working-directory: apps/extension/dist
|
||||
run: zip -r ../../extension-${{ github.event.pull_request.head.sha }}.zip *
|
||||
run: zip -r ../../extension-${{ github.sha }}.zip *
|
||||
shell: bash
|
||||
|
||||
- name: Upload extension archive
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: extension-${{ github.sha }}
|
||||
path: apps/extension/extension-${{ github.event.pull_request.head.sha }}.zip
|
||||
path: apps/extension/extension-${{ github.sha }}.zip
|
||||
|
|
|
|||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
|
||||
- name: Setup Bun
|
||||
uses: oven-sh/setup-bun@v1
|
||||
with:
|
||||
|
|
@ -27,4 +27,6 @@ jobs:
|
|||
uses: cloudflare/wrangler-action@v3.4.1
|
||||
with:
|
||||
apiToken: ${{ secrets.CF_API_TOKEN }}
|
||||
packageManager: bun
|
||||
packageManager: bun
|
||||
buildCommand: bun run build
|
||||
buildDirectory: apps/web/.vercel/output/static
|
||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -23,8 +23,8 @@ jobs:
|
|||
uses: ExtensionNinja/extension-publish@main
|
||||
with:
|
||||
action: upload
|
||||
extensionID: INSERT_YOUR_EXTENSION_ID
|
||||
extensionID: afpgkkipfdpeaflnpoaffkcankadgjfc
|
||||
clientID: ${{ secrets.GOOGLE_CLIENT_ID }}
|
||||
clientSecret: ${{ secrets.GOOGLE_CLIENT_SECRET }}
|
||||
clientRefreshToken: ${{ secrets.GOOGLE_REFRESH_TOKEN }}
|
||||
extensionFile: apps/extension/extension-${{ github.event.pull_request.head.sha }}.zip
|
||||
extensionFile: apps/extension/extension-${{ github.sha }}.zip
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue