aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2025-01-20 17:49:19 -0700
committerDhravya Shah <[email protected]>2025-01-20 17:50:45 -0700
commit47904011de646b92b1f3774f9a30bcfa118c5dc4 (patch)
treeab0e5e79c4ad5465ceeedc9b4015be2d9d01be45 /.github
parentMerge pull request #295 from supermemoryai/extension/duplicate-save-fix (diff)
downloadsupermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.tar.xz
supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.zip
Supermemory v2 Release 🚀
Diffstat (limited to '.github')
-rw-r--r--.github/actions/buildextension/action.yml29
-rw-r--r--.github/workflows/release.yml30
2 files changed, 0 insertions, 59 deletions
diff --git a/.github/actions/buildextension/action.yml b/.github/actions/buildextension/action.yml
deleted file mode 100644
index ed0d7fa0..00000000
--- a/.github/actions/buildextension/action.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-name: "Build Chrome extension"
-description: "Builds the chrome extension into a ZIP"
-runs:
- using: "composite"
- steps:
- - name: Setup Bun
- uses: oven-sh/setup-bun@v1
- with:
- bun-version: latest
-
- - name: Install packages
- run: bun i
- shell: bash
-
- - name: Build extension
- run: bun run build
- working-directory: apps/extension
- shell: bash
-
- - name: Pack extension
- working-directory: apps/extension/dist
- 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/dist/extension-${{ github.sha }}.zip
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index 73b074dc..00000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Upload to Web Store
-on:
- push:
- tags:
- - "*"
-jobs:
- build-extension:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: ./.github/actions/buildextension
-
- upload-extension:
- runs-on: ubuntu-latest
- needs: build-extension
- steps:
- - name: Download extension archive
- uses: actions/download-artifact@v3
- with:
- name: extension-${{ github.sha }}
-
- - name: Upload to webstore
- uses: ExtensionNinja/extension-publish@main
- with:
- action: upload
- extensionID: afpgkkipfdpeaflnpoaffkcankadgjfc
- clientID: ${{ secrets.GOOGLE_CLIENT_ID }}
- clientSecret: ${{ secrets.GOOGLE_CLIENT_SECRET }}
- clientRefreshToken: ${{ secrets.GOOGLE_REFRESH_TOKEN }}
- extensionFile: apps/extension/dist/extension-${{ github.sha }}.zip