We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3473df0 commit ef73a26Copy full SHA for ef73a26
.github/workflows/build-and-deploy.yml
@@ -24,3 +24,26 @@ jobs:
24
with:
25
name: build
26
path: dist
27
+ list-files:
28
+ runs-on: ubuntu-latest
29
+ outputs:
30
+ paths: ${{ steps.list-files.outputs.paths }}
31
+ steps:
32
+ - name: List Files
33
+ id: list-files
34
+ uses: mirko-felice/[email protected]
35
+ with:
36
+ repo: ${{ github.repository }}
37
+ ref: ${{ github.ref }}
38
+ path: "."
39
+ ext: ".yml"
40
+ Test:
41
+ needs: list-files
42
+ strategy:
43
+ matrix:
44
+ paths: ${{ fromJson(needs.list-files.outputs.paths) }}
45
46
47
+ - name: Output results
48
+ run: |
49
+ echo ${{ matrix.paths }}
0 commit comments