-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (42 loc) · 1.28 KB
/
matrix-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Juno (build & deploy all apps)
on:
push:
branches:
- gh-matrix
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# On release creation
# release:
# types: [created]
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "apps/exampleapp"
cancel-in-progress: true
# Default to bash
defaults:
run:
shell: bash
# echo "dirs=$(ls -d ./apps/*/ | jq --raw-input --slurp --compact-output 'split("\n")[:-1]')"
jobs:
collect_info:
runs-on: [ubuntu-latest]
outputs:
apps: ${{ steps.collect-apps.outputs.apps }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Collect apps
id: collect-apps
run: |
echo "apps=$(ls -d ./apps/*/ | jq --raw-input --slurp --compact-output 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
run_test:
needs: collect_info
runs-on: [ubuntu-latest]
strategy:
matrix:
apps: ${{fromJson(needs.collect_info.outputs.apps)}}
steps:
- run: echo ${{ matrix.apps }}
# steps:
# - run: echo ${{ needs.collect_info.outputs.apps }}