File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: WF test
33on :
44 workflow_dispatch :
55
6- # ###############################################################################
6+ # # CONFIG ##############################################################################
77jobs :
88 job-config :
99 runs-on : ubuntu-latest
4848 echo ${{ steps.prebuild-checks.outputs.cancel }}
4949
5050
51- # ###############################################################################
51+ # # BUILD ##############################################################################
5252 job-build :
5353 needs : [ job-config ]
5454 if : ${{ needs.job-config.outputs.cancel }} != 'true'
@@ -70,16 +70,16 @@ jobs:
7070 echo ${{ matrix.config }}
7171 echo "CANCEL:"
7272 echo ${{ needs.job-config.outputs.cancel }}
73- echo "${{ matrix.config }}" >> "Kernel_${{ matrix.config }}"
73+ echo "${{ matrix.config }}" >> WSL2kernel
7474
7575 - name : " 👍 Upload Artifact"
7676 uses : actions/upload-artifact@v3
7777 with :
78- name : Kernel_ ${{ matrix.config }}
78+ name : ${{ matrix.config }}
7979 path : |
80- Kernel_*
80+ WSL2kernel
8181
82- # ###############################################################################
82+ # # PUBLISH ##############################################################################
8383 job-publish :
8484 if : ${{ needs.job-config.outputs.cancel }} != 'true'
8585 needs :
@@ -102,14 +102,14 @@ jobs:
102102 - name : Artifact downloader
103103 uses : actions/download-artifact@v3
104104 with :
105- path : ~/kernels
105+ path : ~/artifacts
106106
107107 - name : " ✔️ TEST matrix"
108108 run : |
109109 pwd
110110 ls -als $(pwd)
111- ls ~
111+ ls -als ~
112112 ls -als /home/runner
113- ls -Rals ~/kernels
113+ ls -Rals ~/artifacts
114114
115115
You can’t perform that action at this time.
0 commit comments