fix(mod_versions): log errors on create_version #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Index | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup rust | |
uses: ./.github/actions/setup-rust | |
- name: Setup cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Build | |
shell: bash | |
id: build | |
run: | | |
cargo build --release --target aarch64-unknown-linux-gnu | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: geode-index | |
path: ./target/aarch64-unknown-linux-gnu/release/geode-index |