Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bennet-Sunder committed May 16, 2024
1 parent d43f392 commit bc8b84f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/polyglot_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Build wheel with Maturin
run: |
pip install --upgrade maturin
maturin build --release -o dist
maturin build --sdist -o dist
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
Expand All @@ -21,8 +26,13 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Build wheel with Maturin
run: |
pip install --upgrade maturin
maturin build --release -o dist
maturin build --sdist -o dist
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: polyglot-piranha-package-ubuntu-20
path: dist/*
path: dist/*
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ env_logger = "0.10.0"
tempdir = "0.3"
serde_json = "1.0.82"

tree-sitter-kotlin = { git = "https://github.com/fwcd/tree-sitter-kotlin.git", rev = "de28fed67ef907aa6c5324b633414cdb2f8bdbfd"}
tree-sitter-kotlin = { git = "https://github.com/fwcd/tree-sitter-kotlin.git", rev = "de28fed67ef907aa6c5324b633414cdb2f8bdbfd" }
tree-sitter-java = "0.20.2"
# TODO: Update after: https://github.com/alex-pinkus/tree-sitter-swift/issues/278 resolves
tree-sitter-swift = { git = "https://github.com/satyam1749/tree-sitter-swift.git", rev = "08a28993599f1968bc81631a89690503e1db7704" }
Expand Down

0 comments on commit bc8b84f

Please sign in to comment.