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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,14 @@ jobs:
bazel run //tensorboard/pip_package:build_pip_package -- /tmp/tb_nightly_pip_package
- name: 'Upload Pip package as an artifact (master branch TF build only)'
# Prevent uploads when running on forks or non-master branch.
#
# Note that upload-artifact GH action, starting in v4, requires the name of the uploaded
# file(s) to be unique per workflow run, so make sure that the name is unique for each
# "matrix" combination for which this is executed.
if: matrix.tf_version_id == 'tf' && github.repository == 'tensorflow/tensorboard' && github.ref == 'refs/heads/master'
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3.1.1
uses: actions/upload-artifact@v4
with:
name: tb-nightly
name: tb-nightly_py${{ matrix.python_version }}
path: /tmp/tb_nightly_pip_package/*

build-data-server-pip:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
if: github.repository == 'tensorflow/tensorboard'
steps:
- name: Download pip package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tb-nightly
pattern: tb-nightly_py*
# Download all matching artifacts in the same directory (specified by path)
merge-multiple: true
path: wheels
- name: Install Twine
run: pip install twine
Expand Down
Loading