Skip to content

Commit

Permalink
Add "version" and "path" output variables (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-lobanov committed Jul 21, 2021
1 parent bc5c628 commit 881be56
Show file tree
Hide file tree
Showing 3 changed files with 1,075 additions and 58 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/e2e.yml
Expand Up @@ -20,8 +20,14 @@ jobs:
uses: actions/checkout@v2

- uses: ./
name: Setup Xcode
id: setup-xcode
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Print output variables
run: |
echo "Version: ${{ steps.setup-xcode.outputs.version }}"
echo "Path: ${{ steps.setup-xcode.outputs.path }}"
versions-macOS-110:
name: macOS 11
Expand All @@ -35,5 +41,11 @@ jobs:
uses: actions/checkout@v2

- uses: ./
name: Setup Xcode
id: setup-xcode
with:
xcode-version: ${{ matrix.xcode-version }}
xcode-version: ${{ matrix.xcode-version }}
- name: Print output variables
run: |
echo "Version: ${{ steps.setup-xcode.outputs.version }}"
echo "Path: ${{ steps.setup-xcode.outputs.path }}"

0 comments on commit 881be56

Please sign in to comment.