feat: add Grok 4.20 beta models, auto-install rho via doctor --fix #116
Workflow file for this run
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build ${{ matrix.target }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| artifact_name: scud | |
| asset_name: scud-linux-x64 | |
| - os: macos-latest | |
| target: x86_64-apple-darwin | |
| artifact_name: scud | |
| asset_name: scud-macos-x64 | |
| - os: macos-latest | |
| target: aarch64-apple-darwin | |
| artifact_name: scud | |
| asset_name: scud-macos-arm64 | |
| - os: windows-latest | |
| target: x86_64-pc-windows-msvc | |
| artifact_name: scud.exe | |
| asset_name: scud-windows-x64.exe | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| target: ${{ matrix.target }} | |
| override: true | |
| - name: Build | |
| working-directory: ./scud-cli | |
| run: cargo build --release --target ${{ matrix.target }} | |
| - name: Upload binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.asset_name }} | |
| path: scud-cli/target/${{ matrix.target }}/release/${{ matrix.artifact_name }} | |
| release: | |
| name: Create Release | |
| needs: build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download all artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: ./artifacts | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| release_name: Release ${{ github.ref_name }} | |
| draft: false | |
| prerelease: false | |
| - name: Upload Release Assets | |
| run: | | |
| for asset_dir in ./artifacts/*; do | |
| if [ -d "$asset_dir" ]; then | |
| asset_name=$(basename "$asset_dir") | |
| asset_file=$(find "$asset_dir" -type f -name "scud*" | head -1) | |
| if [ -n "$asset_file" ]; then | |
| echo "Uploading $asset_file as $asset_name" | |
| cp "$asset_file" "./$asset_name" | |
| gh release upload ${{ github.ref_name }} "./$asset_name" --clobber | |
| fi | |
| fi | |
| done | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Publish to crates.io | |
| working-directory: ./scud-cli | |
| run: cargo publish --token ${{ secrets.CARGO_TOKEN }} |