Skip to content

⬆️ Bump version. #2

⬆️ Bump version.

⬆️ Bump version. #2

Workflow file for this run

name: Publish docker image
on:
push:
tags: [v*]
jobs:
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: cargo-release Cache
id: cargo_release_cache
uses: actions/cache@v3
with:
path: ~/.cargo/bin/cargo-release
key: ${{ runner.os }}-cargo-release
- run: cargo install cargo-release
if: steps.cargo_release_cache.outputs.cache-hit != 'true'
- run: cargo login ${{ secrets.CRATES_IO_API_TOKEN }}
- run: |-
cargo release \
publish \
--workspace \
--all-features \
--allow-branch HEAD \
--no-confirm \
--no-verify \
--execute