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 82e603d commit 56cab1aCopy full SHA for 56cab1a
1 file changed
.github/workflows/uipath-ci.yml
@@ -56,6 +56,8 @@ jobs:
56
57
pack-with-multi-file-input:
58
runs-on: windows-latest
59
+ outputs:
60
+ packageNames: ${{ steps.pack.outputs.packageNames }}
61
steps:
62
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
63
- uses: actions/checkout@v6
@@ -90,6 +92,15 @@ jobs:
90
92
if-no-files-found: error
91
93
retention-days: 90
94
95
+ matrix-example-job:
96
+ needs: pack-with-multi-file-input
97
+ runs-on: ubuntu-latest
98
+ strategy:
99
+ matrix:
100
+ packageName: ${{ fromJson(needs.pack-with-multi-file-input.outputs.packageNames) }}
101
+ steps:
102
+ - run: echo "This job can now use the package name ${{ matrix.packageName }} to perform further steps, such as deployment or testing."
103
+
104
pack-with-ubuntu:
105
runs-on: ubuntu-latest
106
0 commit comments