elevate version #65
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get toolchain | |
id: toolchain | |
uses: ./.github/actions/get-toolchain | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
with: | |
rust-version: ${{ steps.toolchain.outputs.channel }} | |
targets: wasm32-unknown-unknown | |
- name: Install cargo binstall | |
uses: cargo-bins/cargo-binstall@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('**/Makefile.toml') }} | |
- name: Install cargo-make | |
run: cargo binstall -y cargo-make | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint | |
run: cargo make lint | |
build-example: | |
name: Build example | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- example: demo | |
builder: trunk | |
- example: ssr-demo | |
builder: cargo-leptos | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get toolchain | |
id: toolchain | |
uses: ./.github/actions/get-toolchain | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
with: | |
rust-version: ${{ steps.toolchain.outputs.channel }} | |
targets: wasm32-unknown-unknown | |
- name: Install cargo binstall | |
uses: cargo-bins/cargo-binstall@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install builder | |
run: cargo binstall -y ${{ matrix.builder }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ matrix.example }}-${{ matrix.builder }}-${{ hashFiles('**/Cargo.toml') }}-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('**/Makefile.toml') }} | |
- name: Build with trunk | |
if: ${{ matrix.builder == 'trunk' }} | |
run: | | |
cd examples/${{ matrix.example }} | |
trunk build --release | |
- name: Build with cargo-leptos | |
if: ${{ matrix.builder == 'cargo-leptos' }} | |
run: | | |
cd examples/${{ matrix.example }} | |
cargo leptos build --release | |
test-release-leptos-hotkeys: | |
if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' | |
name: Test leptos-hotkeys release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
- name: Publish | |
run: | | |
cargo login ${{ secrets.CRATES_TOKEN }} | |
cargo publish --dry-run -v -p leptos_hotkeys | |
release-leptos-hotkeys: | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Release leptos-hotkeys | |
needs: | |
- lint | |
- build-example | |
- test-release-leptos-hotkeys | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
- name: Publish | |
run: | | |
cargo login ${{ secrets.CRATES_TOKEN }} | |
cargo publish -v -p leptos_hotkeys | |
create-release: | |
if: startsWith(github.ref, 'refs/tags/') | |
name: Create release | |
needs: release-leptos-hotkeys | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get tag metadata | |
id: tag | |
run: | | |
TAG_TITLE=${GITHUB_REF#refs/*/} | |
echo "title=$TAG_TITLE" >> $GITHUB_OUTPUT | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: ${{ steps.tag.outputs.title }} | |
tag_name: ${{ steps.tag.outputs.title }} | |
body: | | |
See [CHANGELOG](https://github.com/gaucho-labs/leptos-hotkeys/blob/main/CHANGELOG.md). | |
draft: false | |
prerelease: false |