Skip to content

Commit

Permalink
fix: SDK_READ_ACCESS_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
Picodes committed Nov 8, 2024
1 parent 0c1f392 commit 1a41ca0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-repo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ runs:
- name: Install dependencies
run: bun install
env:
GITHUB_REGISTRY_TOKEN: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }}
SDK_READ_ACCESS_TOKEN: ${{ secrets.SDK_READ_ACCESS_TOKEN }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- name: Install dependencies
run: bun install
env:
GITHUB_REGISTRY_TOKEN: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }}
SDK_READ_ACCESS_TOKEN: ${{ secrets.SDK_READ_ACCESS_TOKEN }}
- name: Lint merkl-api codebase
run: bun lint:ci
2 changes: 1 addition & 1 deletion .github/workflows/update_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
export SHORT_SHA=${GITHUB_SHA:0:7}
docker pull $IMAGE_URL:latest || true
docker build --build-arg GITHUB_REGISTRY_TOKEN=${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} --cache-from $IMAGE_URL:latest --tag $IMAGE_URL:$SHORT_SHA --tag $IMAGE_URL:latest .
docker build --build-arg SDK_READ_ACCESS_TOKEN=${{ secrets.SDK_READ_ACCESS_TOKEN }} --cache-from $IMAGE_URL:latest --tag $IMAGE_URL:$SHORT_SHA --tag $IMAGE_URL:latest .
- name: Push image
run: |
export SHORT_SHA=${GITHUB_SHA:0:7}
Expand Down
2 changes: 1 addition & 1 deletion bunfig.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[install.scopes]
"@angleprotocol" = {
token = $GITHUB_REGISTRY_TOKEN,
token = $SDK_READ_ACCESS_TOKEN,
url = "https://npm.pkg.github.com/"
}
2 changes: 1 addition & 1 deletion packages/dappkit
Submodule dappkit updated 38 files
+0 −1 .gitignore
+ bun.lockb
+1 −0 node_modules/merkl-api
+51 −55 src/components.ts
+0 −34 src/components/VisuallyHidden.tsx
+0 −86 src/components/dapp/Countdown.tsx
+5 −5 src/components/extenders/Dropdown.tsx
+10 −5 src/components/extenders/Group.tsx
+0 −19 src/components/layout/Container.tsx
+19 −0 src/components/layout/Page.tsx
+0 −82 src/components/primitives/Accordion.tsx
+0 −53 src/components/primitives/Bar.tsx
+20 −43 src/components/primitives/Button.tsx
+3 −20 src/components/primitives/Divider.tsx
+0 −20 src/components/primitives/EventBlocker.tsx
+5 −12 src/components/primitives/Hash.tsx
+8 −23 src/components/primitives/Icon.tsx
+0 −1 src/components/primitives/Image.tsx
+7 −31 src/components/primitives/Input.tsx
+2 −3 src/components/primitives/Table.tsx
+10 −37 src/components/primitives/Text.tsx
+0 −23 src/components/primitives/Time.tsx
+14 −55 src/components/primitives/Title.tsx
+1 −1 src/components/primitives/Value.tsx
+25 −100 src/config/themes.ts
+0 −1 src/constants/SCREENS.json
+1 −1 src/context/Dapp.context.tsx
+14 −42 src/context/Theme.context.tsx
+13 −17 src/hooks/theming/OverrideTheme.tsx
+0 −6 src/hooks/theming/useThemableProps.tsx
+4 −22 src/hooks/theming/useThemedVariables.tsx
+0 −30 src/hooks/useClipboard.tsx
+0 −35 src/style.css
+1 −4 src/theming/coloring.ts
+0 −1 src/theming/tailwind.ts
+0 −9 src/utils/event.ts
+30 −48 src/utils/tailwind.ts
+1 −2 src/utils/types.ts

0 comments on commit 1a41ca0

Please sign in to comment.