fix(view): correct key bindings for pager view #15
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: | |
| workflow_dispatch: | |
| push: | |
| tags: ["v[0-9]+.[0-9]+.[0-9]+*"] | |
| jobs: | |
| build_artifacts: | |
| name: Build for ${{ matrix.os_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os_name: FreeBSD-x86_64 | |
| os: ubuntu-latest | |
| target: x86_64-unknown-freebsd | |
| - os_name: Linux-x86_64 | |
| os: ubuntu-latest | |
| target: x86_64-unknown-linux-musl | |
| - os_name: Linux-aarch64 | |
| os: ubuntu-latest | |
| target: aarch64-unknown-linux-musl | |
| - os_name: Linux-arm | |
| os: ubuntu-latest | |
| target: arm-unknown-linux-musleabi | |
| - os_name: Linux-riscv64 | |
| os: ubuntu-latest | |
| target: riscv64gc-unknown-linux-gnu | |
| - os_name: Windows-aarch64 | |
| os: windows-latest | |
| target: aarch64-pc-windows-msvc | |
| ext: ".exe" | |
| - os_name: Windows-x86_64 | |
| os: windows-latest | |
| target: x86_64-pc-windows-msvc | |
| ext: ".exe" | |
| - os_name: macOS-x86_64 | |
| os: macOS-latest | |
| target: x86_64-apple-darwin | |
| - os_name: macOS-aarch64 | |
| os: macOS-latest | |
| target: aarch64-apple-darwin | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Cache cargo & target directories | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Install musl-tools on Linux | |
| run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools | |
| if: contains(matrix.name, 'musl') | |
| - name: Build binary | |
| uses: houseabsolute/actions-rust-cross@v0 | |
| with: | |
| command: "build" | |
| target: ${{ matrix.target }} | |
| toolchain: stable | |
| args: "--locked --release" | |
| strip: true | |
| - name: Rename Artifacts | |
| shell: bash | |
| run: | | |
| APP_NAME={{ project-name }} | |
| ver=${GITHUB_REF#refs/tags/} | |
| ASSET_PATH=$APP_NAME-$ver-${{ matrix.target }}${{ matrix.ext }} | |
| mv target/${{ matrix.target }}/release/$APP_NAME $ASSET_PATH | |
| echo "ASSET_PATH=$ASSET_PATH" >> $GITHUB_ENV | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: ${{ env.ASSET_PATH }} | |
| path: ${{ env.ASSET_PATH }} | |
| create_release: | |
| name: Create GitHub Release | |
| needs: build_artifacts | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/') | |
| steps: | |
| - name: Download all artifacts | |
| uses: actions/download-artifact@v5 | |
| with: | |
| path: ./artifacts | |
| - name: List downloaded files (debug) | |
| run: ls -R ./artifacts | |
| - name: Generate Release Body | |
| run: | | |
| cargo install git-cliff --locked | |
| git-cliff --latest --strip all | sed 1,2d > RELEASE.md | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: ./artifacts/**/* | |
| body_path: RELEASE.md | |
| draft: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |