From 561404c14dbe8422bc69ab242eb0581b5e5194d6 Mon Sep 17 00:00:00 2001 From: Mauro Ezequiel Moltrasio Date: Fri, 30 Aug 2024 11:55:47 +0200 Subject: [PATCH] Do not process gcloudignore files when uploading support-packages This is a minor change, we are getting some error message on the upload support packages steps from the CPaaS workflows because the google-github-actions/upload-cloud-storage action expects a gcloudignore to be present by default. Since we don't expect to process this kind of file, we just set the option to false on all occurrences of the action. Without this change the actions still worked correctly, this is merely to get rid of the annoying error messages in the CI output. --- .github/workflows/cpaas-sync-drivers.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/cpaas-sync-drivers.yml b/.github/workflows/cpaas-sync-drivers.yml index c5adf62982..7b9c9ce872 100644 --- a/.github/workflows/cpaas-sync-drivers.yml +++ b/.github/workflows/cpaas-sync-drivers.yml @@ -134,6 +134,7 @@ jobs: path: ${{ env.SUPPORT_PACKAGE_TMP_DIR }} parent: false destination: ${{ inputs.support-packages-bucket }}/${{ matrix.platform }} + process_gcloudignore: false - name: Push support-packages to public bucket uses: 'google-github-actions/upload-cloud-storage@v2' @@ -142,6 +143,7 @@ jobs: path: ${{ env.SUPPORT_PACKAGE_TMP_DIR }} parent: false destination: ${{ inputs.public-support-packages-bucket }}/${{ matrix.platform }} + process_gcloudignore: false merge-drivers-failures: runs-on: ubuntu-latest @@ -185,6 +187,7 @@ jobs: path: /tmp/support-packages/output/index.html parent: false destination: ${{ inputs.support-packages-index-bucket }} + process_gcloudignore: false - name: Push index.html to public bucket uses: 'google-github-actions/upload-cloud-storage@v2' @@ -193,6 +196,7 @@ jobs: path: /tmp/support-packages/output/index.html parent: false destination: ${{ inputs.public-support-packages-bucket }} + process_gcloudignore: false copy-to-merged-bucket: runs-on: ubuntu-latest