Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add template gallery as template picker #52

Merged
merged 14 commits into from
Mar 16, 2024
Prev Previous commit
Next Next commit
fix: super stupid
Myriad-Dreamin committed Mar 16, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
snoyberg Michael Snoyman
commit e2c882b03ab5539d61c088a54d040659f06ec1c4
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -130,17 +130,15 @@ jobs:
sudo apt-get update
sudo apt-get install llvm
- name: Install AArch64 target toolchain
if: matrix.rust-target == 'aarch64-unknown-linux-gnu'
if: matrix.rust-target == 'aarch64-unknown-linux-gnu' && (startsWith(github.ref, 'refs/tags/') || matrix.regular_build == 'true')
run: |
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu
if: (startsWith(github.ref, 'refs/tags/') || matrix.regular_build == 'true')
- name: Install ARM target toolchain
if: matrix.rust-target == 'arm-unknown-linux-gnueabihf'
if: matrix.rust-target == 'arm-unknown-linux-gnueabihf' && (startsWith(github.ref, 'refs/tags/') || matrix.regular_build == 'true')
run: |
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf
if: (startsWith(github.ref, 'refs/tags/') || matrix.regular_build == 'true')
- name: Build tinymist binary
shell: pwsh
run: |