File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,21 @@ jobs:
105
105
yarn clean_env_installer && conda-lock install --no-validate-platform --prefix ./env_installer/jlab_server ./env_installer/conda-osx-arm64.lock
106
106
yarn update_binary_sign_list --platform osx-arm64
107
107
108
+ - name : Get changed files
109
+ id : changed-files
110
+ run : |
111
+ git diff --name-only > changed_files.txt
112
+ echo "files<<EOF" >> $GITHUB_OUTPUT
113
+ cat changed_files.txt >> $GITHUB_OUTPUT
114
+ echo "EOF" >> $GITHUB_OUTPUT
115
+
108
116
- name : Upload updated repo as artifact
109
117
uses : actions/upload-artifact@v4
110
118
with :
111
119
name : updated-repo
112
120
path : |
113
- $(git diff --name-only)
121
+ ${{ steps.changed-files.outputs.files }}
122
+ if-no-files-found : error
114
123
115
124
push-and-pr :
116
125
needs : [check-latest-version, update-files]
You can’t perform that action at this time.
0 commit comments