We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 465766c commit c66746aCopy full SHA for c66746a
.github/workflows/release.yml
@@ -15,10 +15,11 @@ jobs:
15
- name: Checkout code
16
uses: actions/checkout@v4
17
18
- - name: Setup Swift
19
- uses: swift-actions/setup-swift@v2
20
- with:
21
- swift-version: '6.2'
+ - name: Setup Swift via Homebrew
+ run: |
+ brew update
+ brew install swift
22
+ swift --version
23
24
- name: Get tag name
25
id: tag
@@ -82,7 +83,6 @@ jobs:
82
83
### Installation
84
85
**macOS (Universal - Intel & Apple Silicon)**
-
86
```bash
87
# For iwx
88
curl -L -O https://github.com/${{ github.repository }}/releases/download/${{ steps.tag.outputs.TAG_NAME }}/iwx-${{ steps.tag.outputs.TAG_NAME }}-macos-universal.tar.gz
0 commit comments