File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 89
89
nix-shell -p patchelf --run 'patchelf --set-rpath \$ORIGIN/lib:/lib64 bin/hello'
90
90
91
91
- name : Upload hello executable
92
- uses : actions/upload-artifact@v3
92
+ uses : actions/upload-artifact@v4
93
93
with :
94
+ overwrite : true
94
95
name : ${{ inputs.package }}-${{ inputs.platform }}${{ inputs.target-platform }}-${{ inputs.compiler-nix-name }}${{ inputs.minimal && '-minimal' || '' }}${{ inputs.iog && '-iog' || '' }}
95
96
path : |
96
97
hello-1.0.0.2/bin/hello${{ inputs.target-platform == '-windows' && '.exe' || '' }}
@@ -103,7 +104,7 @@ jobs:
103
104
runs-on : ${{ inputs.target-platform == '-windows' && 'windows-latest' || (inputs.platform == 'x86_64-linux' && 'ubuntu-latest' || 'macos-latest') }}
104
105
steps :
105
106
- name : Download hello executable
106
- uses : actions/download-artifact@v3
107
+ uses : actions/download-artifact@v4
107
108
with :
108
109
name : ${{ inputs.package }}-${{ inputs.platform }}${{ inputs.target-platform }}-${{ inputs.compiler-nix-name }}${{ inputs.minimal && '-minimal' || '' }}${{ inputs.iog && '-iog' || '' }}
109
110
You can’t perform that action at this time.
0 commit comments