Skip to content

Commit

Permalink
fix: udpate ui dependency to fix link issue
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh committed Dec 12, 2024
1 parent 7e523be commit 5553d2d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 22 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:

# Allows to run the workflow manually from the Actions tab
workflow_dispatch:
inputs:
version:
type: string
description: "Tagged version to deploy"
required: true

permissions:
id-token: write # This is required for requesting the JWT
Expand All @@ -27,7 +32,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.tag }}
ref: ${{ github.event.client_payload.tag || inputs.version }}

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand All @@ -47,7 +52,7 @@ jobs:
- name: pnpm build
# Set environment variables required to perform the build. These are only available to this step
env:
VITE_VERSION: ${{ github.event.client_payload.tag }}
VITE_VERSION: ${{ github.event.client_payload.tag || inputs.version }}
VITE_GRAASP_DOMAIN: ${{ vars.VITE_GRAASP_DOMAIN }}
VITE_GRAASP_API_HOST: ${{ vars.VITE_GRAASP_API_HOST }}
VITE_GRAASP_BUILDER_HOST: ${{ vars.VITE_GRAASP_BUILDER_HOST }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@graasp/sdk": "5.4.0",
"@graasp/stylis-plugin-rtl": "2.2.0",
"@graasp/translations": "1.43.0",
"@graasp/ui": "5.4.6",
"@graasp/ui": "5.4.7",
"@mui/icons-material": "6.2.0",
"@mui/lab": "6.0.0-beta.19",
"@mui/material": "6.2.0",
Expand Down
30 changes: 11 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5553d2d

Please sign in to comment.