From bf6b4c695eda1d9c208b2f88d6f8a18c33ec850f Mon Sep 17 00:00:00 2001 From: Kevin Minehart <5140827+kminehart@users.noreply.github.com> Date: Tue, 15 Jul 2025 14:04:58 -0500 Subject: [PATCH] CI: Disable gzip encoding on upload (#108149) * Use my fork for testing * set gzip: false * use push-to-gcs@main * use my branch for testing * use main for login and push to gcs? * Use push-to-gcs/v0.2.1 * use main; set gzip to false * use main instead of my branch --- .github/workflows/publish-artifact.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-artifact.yml b/.github/workflows/publish-artifact.yml index 1cc650858a7..45aa1d79445 100644 --- a/.github/workflows/publish-artifact.yml +++ b/.github/workflows/publish-artifact.yml @@ -48,7 +48,7 @@ jobs: path: ./artifact - name: Log in to GCS id: login-to-gcs - uses: grafana/shared-workflows/actions/login-to-gcs@login-to-gcs/v0.2.1 + uses: grafana/shared-workflows/actions/login-to-gcs@main with: environment: ${{ inputs.environment }} service_account: ${{ inputs.service-account }} @@ -58,7 +58,7 @@ jobs: find ./artifact -mindepth 2 -maxdepth 2 -exec cp -r {} out/ \; ls -al out - name: Upload artifacts - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 + uses: grafana/shared-workflows/actions/push-to-gcs@main with: bucket: ${{ inputs.bucket }} environment: ${{ inputs.environment }} @@ -66,3 +66,4 @@ jobs: path: out bucket_path: ${{ inputs.bucket-path }} service_account: ${{ inputs.service-account }} + gzip: false