Skip to content

Commit

Permalink
feat: cedarling integration with tarp (#10681)
Browse files Browse the repository at this point in the history
* feat: correct typo in code.

Signed-off-by: Arnab Dutta <[email protected]>

* ci: git add wasm build-packages.yml

Signed-off-by: Mohammad Abudayyeh <[email protected]>

* ci: fix dirs build-packages.yml

Signed-off-by: Mohammad Abudayyeh <[email protected]>

---------

Signed-off-by: Arnab Dutta <[email protected]>
Signed-off-by: Mohammad Abudayyeh <[email protected]>
Co-authored-by: Mohammad Abudayyeh <[email protected]>
  • Loading branch information
duttarnab and moabu authored Jan 17, 2025
1 parent 60dc7a5 commit 4f44337
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,10 @@ jobs:
TAG="0.0.0"
fi
wget https://github.com/${{ github.repository }}/releases/download/"${VER}"/cedarling_wasm_"${TAG}"_pkg.tar.gz -O cedarling_wasm.tar.gz
mkdir wasm
tar -xvf cedarling_wasm.tar.gz -C wasm
mkdir -p src/wasm
tar -xvf cedarling_wasm.tar.gz -C src/wasm
rm cedarling_wasm.tar.gz
ls src/wasm
# END Get the latest cedarling wasm package
npm install
npm run build
Expand Down Expand Up @@ -435,4 +437,4 @@ jobs:
sha256sum cedarling_wasm_"${TAG}"_pkg.tar.gz > cedarling_wasm_"${TAG}"_pkg.tar.gz.sha256sum
gpg --armor --detach-sign cedarling_wasm_"${TAG}"_pkg.tar.gz || echo "Failed to sign"
echo "${{ secrets.MOAUTO_WORKFLOW_TOKEN }}" | gh auth login --with-token
gh release upload "${VERSION}" *.tar.gz *.sha256sum *.asc
gh release upload "${VERSION}" *.tar.gz *.sha256sum *.asc
4 changes: 1 addition & 3 deletions demos/jans-tarp/src/options/homePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ import Tab from '@mui/material/Tab';
import Box from '@mui/material/Box';
import Password from '@mui/icons-material/Password';
import LockPerson from '@mui/icons-material/LockPerson';
import OIDCClients from './OIDCClients';
import OIDCClients from './oidcClients';
import Cedarling from './cedarling';
import Grid from '@mui/material/Grid';
import Paper from '@mui/material/Paper';
import { styled } from '@mui/material/styles';

interface TabPanelProps {
children?: React.ReactNode;
Expand Down

0 comments on commit 4f44337

Please sign in to comment.