From fec855bbbc51c0091c4e3d4ecc1ecebe76f8e32d Mon Sep 17 00:00:00 2001 From: Jirka B Date: Thu, 26 Sep 2024 11:35:45 +0200 Subject: [PATCH] fix(ci): update for breaking change with upload/download --- .github/workflows/_build-packages.yml | 2 ++ .github/workflows/_legacy-checkpoints.yml | 1 + .github/workflows/docs-build.yml | 1 + .github/workflows/release-nightly.yml | 1 + 4 files changed, 5 insertions(+) diff --git a/.github/workflows/_build-packages.yml b/.github/workflows/_build-packages.yml index e0262ac63b685..48f7257674ec6 100644 --- a/.github/workflows/_build-packages.yml +++ b/.github/workflows/_build-packages.yml @@ -33,6 +33,7 @@ jobs: name: ${{ inputs.artifact-name }} path: dist retention-days: ${{ steps.keep-artifact.outputs.DAYS }} + include-hidden-files: true build-packages: needs: init @@ -66,3 +67,4 @@ jobs: with: name: ${{ inputs.artifact-name }} path: pypi + include-hidden-files: true diff --git a/.github/workflows/_legacy-checkpoints.yml b/.github/workflows/_legacy-checkpoints.yml index fe3ad2dec1f11..15d226eed7fec 100644 --- a/.github/workflows/_legacy-checkpoints.yml +++ b/.github/workflows/_legacy-checkpoints.yml @@ -109,6 +109,7 @@ jobs: name: checkpoints-${{ github.sha }} path: ${{ env.LEGACY_FOLDER }}/checkpoints/ retention-days: ${{ env.KEEP_DAYS }} + include-hidden-files: true - run: pip install -r requirements/ci.txt - name: Upload checkpoints to S3 diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 8f385fcb39fd7..adbc4613f4ca1 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -134,6 +134,7 @@ jobs: name: docs-${{ matrix.pkg-name }}-${{ github.sha }} path: docs/build/html/ retention-days: ${{ env.ARTIFACT_DAYS }} + include-hidden-files: true #- name: Dump handy wheels # if: github.event_name == 'push' && github.ref == 'refs/heads/master' diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 9578f84b87093..396e485b90065 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -44,6 +44,7 @@ jobs: with: name: nightly-packages-${{ github.sha }} path: dist + include-hidden-files: true publish-packages: runs-on: ubuntu-22.04