Publish #31
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: Publish | |
on: workflow_dispatch | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
env: | |
CRATE_NAME: embuild | |
steps: | |
- name: Setup | Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | Rust | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
components: rust-src | |
- name: Setup | Default to nightly | |
run: rustup default nightly | |
- name: Login | |
run: cargo login ${{ secrets.crates_io_token }} | |
- name: Build | Publish | |
run: cargo publish | |
- name: Get the crate version from cargo | |
run: | | |
version=$(cargo metadata --format-version=1 --no-deps | jq -r ".packages[] | select(.name == \"${{env.CRATE_NAME}}\") | .version") | |
echo "crate_version=$version" >> $GITHUB_ENV | |
echo "${{env.CRATE_NAME}} version: $version" | |
- name: Tag the new release | |
uses: rickstaa/action-create-tag@v1 | |
with: | |
tag: v${{env.crate_version}} | |
message: "Release v${{env.crate_version}}" |