Skip to content

Commit

Permalink
refactor: decouple ecosystem from existing code-base (#763)
Browse files Browse the repository at this point in the history
* feat: decouple ecosystem codebase

Signed-off-by: pranalidhanavade <[email protected]>

* feat: org dashboard changes

Signed-off-by: pranalidhanavade <[email protected]>

* fix: added conditions for empty list components and create endorsement buttons

Signed-off-by: pranalidhanavade <[email protected]>

* [Deno Deploy] Update .github/workflows/deploy.yml

* feat:added env varibales in envConfig

Signed-off-by: pranalidhanavade <[email protected]>

* feat: added ecosystem intercepter for ecosystem

Signed-off-by: Tipu_Singh <[email protected]>

* refactor: changes in axios methods

Signed-off-by: pranalidhanavade <[email protected]>

* fix: redirection logic for create schema page

Signed-off-by: pranalidhanavade <[email protected]>

* fix: delete organization issues

Signed-off-by: pranalidhanavade <[email protected]>

---------

Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: Tipu_Singh <[email protected]>
Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com>
Co-authored-by: Tipu_Singh <[email protected]>
  • Loading branch information
3 people authored Sep 30, 2024
1 parent c5708d4 commit 9310af4
Show file tree
Hide file tree
Showing 63 changed files with 9,804 additions and 5,619 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy main to Deno Deploy
name: Deploy
on:
push:
branches: main
branches: refactor/decouple-ecosystem-from-existing-codebase
pull_request:
branches: main
branches: refactor/decouple-ecosystem-from-existing-codebase

jobs:
deploy:
Expand All @@ -16,24 +16,19 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Build step
run: "npm install && npm run build" # 📝 Update the build command(s) if necessary
run: "npm install && npm run build"

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "credebl-studio"
entrypoint: "server/entry.mjs" # 📝 Update the entrypoint if necessary
root: "dist" # 📝 Update the root if necessary
project: "credebl-dev-ui"
entrypoint: "server/entry.mjs"
root: "dist"
Loading

0 comments on commit 9310af4

Please sign in to comment.