Skip to content
Closed
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
9 changes: 2 additions & 7 deletions .github/workflows/test-and-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ jobs:
publish-images:
needs: [test-client, test-server]
runs-on: ubuntu-24.04
if: "startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -155,12 +154,8 @@ jobs:
echo "GIT_USER=Renku Bot" >> $GITHUB_ENV
echo "[email protected]" >> $GITHUB_ENV
- name: Push images
uses: SwissDataScienceCenter/renku-actions/publish-chartpress-images@v1.17.0
uses: SwissDataScienceCenter/renku-actions/publish-chartpress-images@add-platform-build-support-variable
env:
DOCKER_USERNAME: ${{ secrets.RENKU_DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.RENKU_DOCKER_PASSWORD }}
- name: Update ui version
uses: SwissDataScienceCenter/renku-actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }}
COMPONENT_NAME: renku-ui
PLATFORMS: "linux/amd64,linux/arm64"
1 change: 0 additions & 1 deletion client/src/dataset/DatasetError.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ function DatasetError({ fetchError, insideProject, logged }) {
const textPost = "and try again.";
const loginUrl = useLoginUrl();

// inside project case
if (insideProject) {
const title = `Error ${fetchError.code ? fetchError.code : "unknown"}`;
let errorDetails = null;
Expand Down
Loading