Skip to content

Commit 881be56

Browse files
Add "version" and "path" output variables (#28)
1 parent bc5c628 commit 881be56

File tree

3 files changed

+1075
-58
lines changed

3 files changed

+1075
-58
lines changed

Diff for: .github/workflows/e2e.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,14 @@ jobs:
2020
uses: actions/checkout@v2
2121

2222
- uses: ./
23+
name: Setup Xcode
24+
id: setup-xcode
2325
with:
2426
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 }}"
2531
2632
versions-macOS-110:
2733
name: macOS 11
@@ -35,5 +41,11 @@ jobs:
3541
uses: actions/checkout@v2
3642

3743
- uses: ./
44+
name: Setup Xcode
45+
id: setup-xcode
3846
with:
39-
xcode-version: ${{ matrix.xcode-version }}
47+
xcode-version: ${{ matrix.xcode-version }}
48+
- name: Print output variables
49+
run: |
50+
echo "Version: ${{ steps.setup-xcode.outputs.version }}"
51+
echo "Path: ${{ steps.setup-xcode.outputs.path }}"

0 commit comments

Comments
 (0)