File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -130,10 +130,14 @@ jobs:
130
130
bazel run //tensorboard/pip_package:build_pip_package -- /tmp/tb_nightly_pip_package
131
131
- name : ' Upload Pip package as an artifact (master branch TF build only)'
132
132
# Prevent uploads when running on forks or non-master branch.
133
+ #
134
+ # Note that upload-artifact GH action, starting in v4, requires the name of the uploaded
135
+ # file(s) to be unique per workflow run, so make sure that the name is unique for each
136
+ # "matrix" combination for which this is executed.
133
137
if : matrix.tf_version_id == 'tf' && github.repository == 'tensorflow/tensorboard' && github.ref == 'refs/heads/master'
134
- uses : actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3.1.1
138
+ uses : actions/upload-artifact@v4
135
139
with :
136
- name : tb-nightly
140
+ name : tb-nightly_py${{ matrix.python_version }}
137
141
path : /tmp/tb_nightly_pip_package/*
138
142
139
143
build-data-server-pip :
Original file line number Diff line number Diff line change 20
20
if : github.repository == 'tensorflow/tensorboard'
21
21
steps :
22
22
- name : Download pip package
23
- uses : actions/download-artifact@v3
23
+ uses : actions/download-artifact@v4
24
24
with :
25
- name : tb-nightly
25
+ pattern : tb-nightly_py*
26
+ # Download all matching artifacts in the same directory (specified by path)
27
+ merge-multiple : true
26
28
path : wheels
27
29
- name : Install Twine
28
30
run : pip install twine
You can’t perform that action at this time.
0 commit comments