We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc5c628 commit 881be56Copy full SHA for 881be56
.github/workflows/e2e.yml
@@ -20,8 +20,14 @@ jobs:
20
uses: actions/checkout@v2
21
22
- uses: ./
23
+ name: Setup Xcode
24
+ id: setup-xcode
25
with:
26
xcode-version: ${{ matrix.xcode-version }}
27
+ - name: Print output variables
28
+ run: |
29
+ echo "Version: ${{ steps.setup-xcode.outputs.version }}"
30
+ echo "Path: ${{ steps.setup-xcode.outputs.path }}"
31
32
versions-macOS-110:
33
name: macOS 11
@@ -35,5 +41,11 @@ jobs:
35
41
36
42
37
43
44
45
38
46
39
- xcode-version: ${{ matrix.xcode-version }}
47
+ xcode-version: ${{ matrix.xcode-version }}
48
49
50
51
0 commit comments