tricky support for container styles #46
Workflow file for this run
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
on: | |
release: | |
types: [created] | |
name: Publish to crate | |
jobs: | |
publish: | |
name: Publish to cargo | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: clippy | |
- uses: jetli/[email protected] | |
with: | |
# Optional version of trunk to install(eg. 'v0.8.1', 'latest') | |
version: 'latest' | |
- run: cargo test | |
- run: rustup target add wasm32-unknown-unknown && trunk build --release | |
working-directory: demo_respo | |
- uses: katyo/publish-crates@v1 | |
with: | |
path: respo/ | |
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} |