Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: cedarling integration with tarp #10681

Merged
merged 3 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading