Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- run: bazelisk shutdown

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: "${{ matrix.docs.name }}"
path: ${{ github.workspace }}/docs/site/
Expand All @@ -55,7 +55,7 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v7
with:
path: ${{ github.workspace }}/docs/generated
- name: Inspect docs site directory structure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
echo "ARCHIVE_SHA256=$(shasum -a 256 ${{ github.workspace }}/.github/rules_cuda.tar.gz | cut -d ' ' -f 1)" >> $GITHUB_ENV
echo "RELEASE_VERSION=${GITHUB_REF_NAME}" >> $GITHUB_ENV
# Upload the artifact in case creating a release fails so all artifacts can then be manually recovered.
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: "rules_cuda.tar.gz"
path: ${{ github.workspace }}/.github/rules_cuda.tar.gz
Expand Down
Loading