From 6f66156720770ba04bfdf8a8bedc1df9264df2ce Mon Sep 17 00:00:00 2001 From: Wes Johnson Date: Mon, 24 Mar 2025 16:19:15 +0100 Subject: [PATCH 1/2] testing GH action - ignore --- .github/workflows/test-and-ci.yml | 3 ++- client/src/dataset/DatasetError.jsx | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-ci.yml b/.github/workflows/test-and-ci.yml index d542938843..85a220ae95 100644 --- a/.github/workflows/test-and-ci.yml +++ b/.github/workflows/test-and-ci.yml @@ -155,10 +155,11 @@ jobs: echo "GIT_USER=Renku Bot" >> $GITHUB_ENV echo "GIT_EMAIL=renku@datascience.ch" >> $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 }} + PLATFORMS: "linux/amd64,linux/arm64" - name: Update ui version uses: SwissDataScienceCenter/renku-actions/update-component-version@v1.17.0 env: diff --git a/client/src/dataset/DatasetError.jsx b/client/src/dataset/DatasetError.jsx index 353a259523..12bae82d56 100644 --- a/client/src/dataset/DatasetError.jsx +++ b/client/src/dataset/DatasetError.jsx @@ -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; From 2187acf9bd6b1b637004b7d7d6a403f114264b97 Mon Sep 17 00:00:00 2001 From: Wes Johnson Date: Mon, 24 Mar 2025 16:23:46 +0100 Subject: [PATCH 2/2] force publish-images action --- .github/workflows/test-and-ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/test-and-ci.yml b/.github/workflows/test-and-ci.yml index 85a220ae95..4f52e22288 100644 --- a/.github/workflows/test-and-ci.yml +++ b/.github/workflows/test-and-ci.yml @@ -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: @@ -160,8 +159,3 @@ jobs: DOCKER_USERNAME: ${{ secrets.RENKU_DOCKER_USERNAME }} DOCKER_PASSWORD: ${{ secrets.RENKU_DOCKER_PASSWORD }} PLATFORMS: "linux/amd64,linux/arm64" - - name: Update ui version - uses: SwissDataScienceCenter/renku-actions/update-component-version@v1.17.0 - env: - GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} - COMPONENT_NAME: renku-ui