Skip to content

Commit 54e9781

Browse files
authored
ls test
1 parent 8ec6c99 commit 54e9781

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/Matrix XP.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: WF test
33
on:
44
workflow_dispatch:
55

6-
################################################################################
6+
## CONFIG ##############################################################################
77
jobs:
88
job-config:
99
runs-on: ubuntu-latest
@@ -48,7 +48,7 @@ jobs:
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

0 commit comments

Comments
 (0)