diff options
| author | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
|---|---|---|
| committer | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
| commit | 6dcc7d18c9be5e3a5e0a3ff60668424ee0158b4e (patch) | |
| tree | 179aa936536510cc707368fc7c330c4c7fbdc3f8 /.github | |
| parent | novel editor (diff) | |
| parent | save user ID with url to ensure that same website can be saved by users (diff) | |
| download | supermemory-new-ui.tar.xz supermemory-new-ui.zip | |
Merge branch 'main' of https://github.com/Dhravya/supermemory into new-uinew-ui
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/buildextension/action.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/build.yml | 12 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/.github/actions/buildextension/action.yml b/.github/actions/buildextension/action.yml index b65953d7..ed0d7fa0 100644 --- a/.github/actions/buildextension/action.yml +++ b/.github/actions/buildextension/action.yml @@ -1,7 +1,7 @@ -name: 'Build Chrome extension' -description: 'Builds the chrome extension into a ZIP' +name: "Build Chrome extension" +description: "Builds the chrome extension into a ZIP" runs: - using: 'composite' + using: "composite" steps: - name: Setup Bun uses: oven-sh/setup-bun@v1 @@ -26,4 +26,4 @@ runs: uses: actions/upload-artifact@v3 with: name: extension-${{ github.sha }} - path: apps/extension/dist/extension-${{ github.sha }}.zip
\ No newline at end of file + path: apps/extension/dist/extension-${{ github.sha }}.zip diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c99080ec..9c1f459d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,15 +4,15 @@ on: push: branches: [main] paths: - - 'apps/web/**' - - 'apps/extension/**' - - 'apps/cf-ai-backend/**' + - "apps/web/**" + - "apps/extension/**" + - "apps/cf-ai-backend/**" pull_request: branches: [main] paths: - - 'apps/web/**' - - 'apps/extension/**' - - 'apps/cf-ai-backend/**' + - "apps/web/**" + - "apps/extension/**" + - "apps/cf-ai-backend/**" jobs: build-extension: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bdc9d474..73b074dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Upload to Web Store on: push: tags: - - '*' + - "*" jobs: build-extension: runs-on: ubuntu-latest |