aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-03-30 22:21:37 -0700
committerDhravya <[email protected]>2024-03-30 22:21:37 -0700
commite68675f3be4425200bb8841d9845bb67c8172e7d (patch)
tree2e685fd8fec9f15abafe7e12374cabfee7db00e4 /.github/workflows/build.yml
parentuntracked .next/ (diff)
downloadsupermemory-e68675f3be4425200bb8841d9845bb67c8172e7d.tar.xz
supermemory-e68675f3be4425200bb8841d9845bb67c8172e7d.zip
added build and release github actions
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..9b46e802
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,14 @@
+name: Build
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+
+jobs:
+ build-extension:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: ./.github/actions/buildextension