Terminal Markdown previewer — GUI-like experience.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #12 from RivoLink/chore/update-build-runners-version

chore: update build runners version

authored by

Rivo Link and committed by
GitHub
a2754f01 b3610328

+20 -14
+20 -14
.github/workflows/release-build.yml
··· 5 5 tags: 6 6 - "*.*.*" 7 7 8 + env: 9 + MACOS_RUNNER: macos-14 10 + LINUX_RUNNER: ubuntu-22.04 11 + ANDROID_RUNNER: ubuntu-22.04 12 + WINDOWS_RUNNER: windows-2022 13 + 8 14 permissions: 9 15 contents: write 10 16 ··· 15 21 fail-fast: false 16 22 matrix: 17 23 include: 18 - - os: ubuntu-latest 19 - artifact_name: leaf-linux-x86_64 20 - binary_path: target/release/leaf 21 - target: "" 22 - - os: ubuntu-latest 23 - artifact_name: leaf-linux-arm64 24 - binary_path: target/aarch64-unknown-linux-gnu/release/leaf 25 - target: aarch64-unknown-linux-gnu 26 - - os: macos-latest 24 + - os: ${{ env.MACOS_RUNNER }} 27 25 artifact_name: leaf-macos-x86_64 28 26 binary_path: target/x86_64-apple-darwin/release/leaf 29 27 target: x86_64-apple-darwin 30 - - os: macos-latest 28 + - os: ${{ env.MACOS_RUNNER }} 31 29 artifact_name: leaf-macos-arm64 32 30 binary_path: target/aarch64-apple-darwin/release/leaf 33 31 target: aarch64-apple-darwin 34 - - os: windows-latest 35 - artifact_name: leaf-windows-x86_64.exe 36 - binary_path: target/release/leaf.exe 32 + - os: ${{ env.LINUX_RUNNER }} 33 + artifact_name: leaf-linux-x86_64 34 + binary_path: target/release/leaf 37 35 target: "" 38 - - os: ubuntu-latest 36 + - os: ${{ env.LINUX_RUNNER }} 37 + artifact_name: leaf-linux-arm64 38 + binary_path: target/aarch64-unknown-linux-gnu/release/leaf 39 + target: aarch64-unknown-linux-gnu 40 + - os: ${{ env.ANDROID_RUNNER }} 39 41 artifact_name: leaf-android-arm64 40 42 binary_path: target/aarch64-linux-android/release/leaf 41 43 target: aarch64-linux-android 44 + - os: ${{ env.WINDOWS_RUNNER }} 45 + artifact_name: leaf-windows-x86_64.exe 46 + binary_path: target/release/leaf.exe 47 + target: "" 42 48 43 49 steps: 44 50 - name: Checkout