We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86814ee commit 699af84Copy full SHA for 699af84
.github/workflows/ci.yml
@@ -85,9 +85,8 @@ jobs:
85
if: startsWith(github.ref, 'refs/tags/v')
86
run: |
87
cp target/release/tree-sitter .
88
- gzip --suffix "-${OS,,}-x64.gz" tree-sitter
89
- env:
90
- OS: ${{ runner.os }}
+ export platform=$(echo ${{ runner.os }} | awk '{print tolower($0)}')
+ gzip --suffix "-${platform}-x64.gz" tree-sitter
91
92
- name: Release
93
uses: softprops/action-gh-release@v1
0 commit comments