diff options
| author | Dhravya <[email protected]> | 2024-03-31 14:46:45 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-03-31 14:46:45 -0700 |
| commit | db669375e037243678cf357a6d4c876ba8dcfced (patch) | |
| tree | b1186db0dd7fb449683302e6fed6210b1fe7b6a1 /.github | |
| parent | update extension: work on all *.dhr.wtf sites (diff) | |
| download | supermemory-db669375e037243678cf357a6d4c876ba8dcfced.tar.xz supermemory-db669375e037243678cf357a6d4c876ba8dcfced.zip | |
(ci): extension path mismatch fix
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/buildextension/action.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/buildextension/action.yml b/.github/actions/buildextension/action.yml index dc1dc80d..b65953d7 100644 --- a/.github/actions/buildextension/action.yml +++ b/.github/actions/buildextension/action.yml @@ -26,4 +26,4 @@ runs: uses: actions/upload-artifact@v3 with: name: extension-${{ github.sha }} - path: apps/extensions/dist/extension-${{ github.sha }}.zip
\ No newline at end of file + path: apps/extension/dist/extension-${{ github.sha }}.zip
\ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57168bb0..bdc9d474 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,4 +27,4 @@ jobs: clientID: ${{ secrets.GOOGLE_CLIENT_ID }} clientSecret: ${{ secrets.GOOGLE_CLIENT_SECRET }} clientRefreshToken: ${{ secrets.GOOGLE_REFRESH_TOKEN }} - extensionFile: apps/extension/extension-${{ github.sha }}.zip + extensionFile: apps/extension/dist/extension-${{ github.sha }}.zip |