Release leptos-spin-macro #1
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: Release leptos-spin-macro | |
on: | |
workflow_dispatch: | |
jobs: | |
publish-dry-run: | |
name: "Perform dry run for publish" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Check macro crate publish | |
run: cargo publish --dry-run -p leptos-spin-macro | |
release: | |
name: "Publish to crates.io" | |
needs: publish-dry-run | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Log into Crates.io | |
run: cargo login ${CRATES_IO_TOKEN} | |
env: | |
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
- name: Publish macro crate | |
run: cargo publish -p leptos-spin-macro |